AES192

Undocumented in source.
alias AES192 = GcryptNoIV!(Algorithm.GCRY_CIPHER_AES192, Mode.GCRY_CIPHER_MODE_ECB)

Examples

Usage example of AES with 192-bit keys

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

testAES!(AES192, KEY);

Meta