Java
Java
Example: Crypt2.SetEncodedIV method
Demonstrates how to call the SetEncodedIV method.Chilkat Java Downloads
import com.chilkatsoft.*;
public class ChilkatExample {
static {
try {
System.loadLibrary("chilkat");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load.\n" + e);
System.exit(1);
}
}
public static void main(String argv[])
{
CkCrypt2 crypt = new CkCrypt2();
crypt.put_CryptAlgorithm("aes");
crypt.put_CipherMode("cbc");
crypt.put_KeyLength(256);
// Note: The lenght of the IV is equal to the block size of the symmetric encryption algorithm.
// The block size for AES is 16 bytes. Therefore, the IV is 16 bytes regardless of the encryption strenght (128-bit, 256-bit, etc.)
crypt.SetEncodedIV("000102030405060708090A0B0C0D0E0F","hex");
// ...
// ...
}
}