tags:

views:

394

answers:

3

Hi

Does anybody know sample application or link where i can test 128 bit AES CFB implemenation given a password and some data.

Thanks

+1  A: 

Does http://www.hanewin.net/encrypt/aes/aes-test.htm work for you?

Martin Hohenberg
i specifically want CFB mode implementation
ckv
+1  A: 

The NIST AES test vectors include CFB tests.

caf
+1  A: 

A number of crypto libraries support AES in CFB mode, including:

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.

Jack Lloyd
thanks let me verify
ckv