AES192_CBC

Undocumented in source.
alias AES192_CBC = GcryptWithIV!(Algorithm.GCRY_CIPHER_AES192, Mode.GCRY_CIPHER_MODE_CBC)

Examples

Usage example of AES-CBC with 192-bit keys

// AES192-CBC requires a key of length 24 bytes.
static immutable KEY = "abcdefghijklmnopqrstuvwx";

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

testAES_IV!(AES192_CBC, KEY, IV);

Meta