Pages

This tutorial covers the basics of the science of cryptography. It explains how programmers and network professionals can use cryptography to maintain the privacy of computer data. Starting with the origins of cryptography, it moves on to explain cryptosystems, various traditional and modern ciphers, public key encryption, data integration, message authentication, and digital signatures.

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";

0 comments:

Post a Comment