aes-soft 0.3.0

AES (Rijndael) block ciphers bit-sliced implementation
Documentation
1
2
3
4
5
6
7
8
9
10
//! Test vectors are from NESSIE:
//! https://www.cosic.esat.kuleuven.be/nessie/testvectors/
#![no_std]
extern crate aes_soft;
#[macro_use]
extern crate block_cipher_trait;

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