File: lib.rs

package info (click to toggle)
rust-aes-soft 0.6.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 324 kB
  • sloc: makefile: 2
file content (6 lines) | stat: -rw-r--r-- 301 bytes parent folder | download
1
2
3
4
5
6
//! Test vectors are from NESSIE:
//! https://www.cosic.esat.kuleuven.be/nessie/testvectors/

cipher::block_cipher_test!(aes128_test, "aes128", aes_soft::Aes128);
cipher::block_cipher_test!(aes192_test, "aes192", aes_soft::Aes192);
cipher::block_cipher_test!(aes256_test, "aes256", aes_soft::Aes256);