Links for AES 128 bit CFB Implemenation or sample application
Does anybody know sample application or link where i can test 128 bit AES CFB implemenation give开发者_如何学Cn a password and some data.
Thanks
A number of crypto libraries support AES in CFB mode, including:
- OpenSSL [C]
- Crypto++ [C++]
- Botan [C++]
- PyCrypto [Python]
- BouncyCastle [C# / Java]
Any one of these would probably work; most will come with test vectors (which NIST also makes available as caf mentions and links to), and you can of course also write a program to test a specific set of inputs if this is desirable.
Does http://www.hanewin.net/encrypt/aes/aes-test.htm work for you?
The NIST AES test vectors include CFB tests.
精彩评论