Pages

Tuesday, 29 October 2019

[ SOLVED ] Wrong IV length: must be 16 bytes long

PROBLEM
Wrong IV length: must be 16 bytes long
CAUSE
IV Length less then 16 
My Code
public static String initVector = "12345678";

SOLVED
change IV variable like this
public static String initVector = "1234567812345678";

No comments:

Post a Comment