mirror of
https://github.com/moparisthebest/Conversations
synced 2025-02-17 07:00:10 -05:00
Merge pull request #1829 from sebastianv89/patch-1
Remove copy of innerkey
This commit is contained in:
commit
e2d3bef739
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user