1 //! Test vectors are from NESSIE:
2 //! https://www.cosic.esat.kuleuven.be/nessie/testvectors/
3 
4 cipher::block_cipher_test!(aes128_test, "aes128", aes_soft::Aes128);
5 cipher::block_cipher_test!(aes192_test, "aes192", aes_soft::Aes192);
6 cipher::block_cipher_test!(aes256_test, "aes256", aes_soft::Aes256);
7