mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-17 09:42:05 +01:00
OMEMO: Switch to sending 12 byte IV
This commit is contained in:
parent
9d626bf787
commit
1051cd2640
1 changed files with 3 additions and 3 deletions
|
@ -274,13 +274,13 @@ public class OmemoMessageBuilder<T_IdKeyPair, T_IdKey, T_PreKey, T_SigPreKey, T_
|
|||
}
|
||||
|
||||
/**
|
||||
* Generate a 16 byte initialization vector for AES encryption.
|
||||
* Generate a 12 byte initialization vector for AES encryption.
|
||||
*
|
||||
* @return iv TODO javadoc me please
|
||||
* @return iv initialization vector
|
||||
*/
|
||||
public static byte[] generateIv() {
|
||||
SecureRandom random = new SecureRandom();
|
||||
byte[] iv = new byte[16];
|
||||
byte[] iv = new byte[12];
|
||||
random.nextBytes(iv);
|
||||
return iv;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue