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);
See Implementation