Where i can find a "reviewed" version of AES implementation in python. Not an API like PyCrypto whereby you can call AES algorithms in a single line.
|
|
Have a look at pyCrypto. It is also linked by the official python doc. As you can see in the pyCrypto doc it implements the following encryption algorithms:
As you already pointed out:
There are also some interesting tutorials:
[update] found a python implementation of aes here and here. I did not verify if it works well. |
||||
|
|
|
This is an implementation of AES written completely in Python. It's not written as a library, it's a program to encrypt files, but looking at the source (which is a single file) the entire AES workings are implemented within it. There are publicly available test vectors from CMVP for validating that an AES implementation conforms to the spec properly. However, this alone does not address the many pragmatic problems an implementation may have. |
||||
|
|