7 lines
286 B
Rust
7 lines
286 B
Rust
|
|
//! Test vectors are from NESSIE:
|
||
|
|
//! https://www.cosic.esat.kuleuven.be/nessie/testvectors/
|
||
|
|
|
||
|
|
cipher::block_cipher_test!(aes128_test, "aes128", aes::Aes128);
|
||
|
|
cipher::block_cipher_test!(aes192_test, "aes192", aes::Aes192);
|
||
|
|
cipher::block_cipher_test!(aes256_test, "aes256", aes::Aes256);
|