AES256

Undocumented in source.
alias AES256 = GcryptNoIV!(Algorithm.GCRY_CIPHER_AES256, Mode.GCRY_CIPHER_MODE_ECB)

Examples

Usage example of AES with 256-bit keys

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

testAES!(AES256, KEY);

Meta