Remove copy of innerkey

The line overwrites this.innerkey with the value that was already there.
This commit is contained in:
Sebastian 2016-05-05 17:09:01 +02:00
parent 6e0ec9b924
commit 544e1dee65
1 changed files with 0 additions and 1 deletions

View File

@ -158,7 +158,6 @@ public class XmppAxolotlMessage {
IvParameterSpec ivSpec = new IvParameterSpec(iv);
Cipher cipher = Cipher.getInstance(CIPHERMODE, PROVIDER);
cipher.init(Cipher.ENCRYPT_MODE, secretKey, ivSpec);
this.innerKey = secretKey.getEncoded();
this.ciphertext = cipher.doFinal(plaintext.getBytes());
} catch (NoSuchAlgorithmException | NoSuchPaddingException | InvalidKeyException
| IllegalBlockSizeException | BadPaddingException | NoSuchProviderException