OMEMO: Switch to sending 12 byte IV

This commit is contained in:
Paul Schaub 2020-02-16 22:15:56 +01:00
parent 9d626bf787
commit 1051cd2640
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}