AES256_CBC

Undocumented in source.
alias AES256_CBC = GcryptWithIV!(Algorithm.GCRY_CIPHER_AES256, Mode.GCRY_CIPHER_MODE_CBC)

Examples

Usage example of AES-CBC with 256-bit keys

// AES256-CBC requires a key of length 32 bytes.
static immutable KEY = "abcdefghijklmnopqrstuvwxyz012345";

// AES256-CBC requires an IV of length 16 bytes.
static immutable IV = "0123456789ABCDEF";

testAES_IV!(AES256_CBC, KEY, IV);

Meta