cfb-mode 0.7.1

Generic Cipher Feedback (CFB) mode implementation.
Documentation
1
2
3
4
5
6
7
use cfb_mode::Cfb;

// tests vectors are from:
// https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-38a.pdf
cipher::stream_cipher_async_test!(cfb_aes128, "aes128", Cfb<aes::Aes128>);
cipher::stream_cipher_async_test!(cfb_aes192, "aes192", Cfb<aes::Aes192>);
cipher::stream_cipher_async_test!(cfb_aes256, "aes256", Cfb<aes::Aes256>);