Usage example of AES with 256-bit keys
// AES256 requires a key of length 32 bytes. static immutable KEY = "abcdefghijklmnopqrstuvwxyz012345"; testAES!(AES256, KEY);
See Implementation