vote up 5 vote down star
1

I am looking for a (preferably pure) python library to do AES 256 encription and decryption.

This library should support the CBC cipher mode and use PKCS7 padding according to the answer to an earlier question of mine.

The library should at least work on Mac OS X (10.4) and Windows XP. Ideally just by dropping it into the source directory of my project. I have seen this by Josh Davis, but am not sure about how good it is and if it does the required CBC cipher mode... Scanning the source suggests it doesn't

flag

3 Answers

vote up 3 vote down check

PyCrypto should be the one for you.

link|flag
There is also a wrapper called ezPyCrypto. Alas, both are in a sad state, as PyCrypto is currently switching maintainers and the new guy won't release. – Daren Thomas Oct 8 '08 at 18:35
vote up 2 vote down

How about ncrypt? It's not pure python but it is a lot faster as a result. It is basically a nice python wrapper on OpenSSL, so you know there's quality code behind it.

link|flag
vote up 1 vote down

PyCrypto is not clearly pythonic so you can get troubles compiling it on some platforms (AIX, HP-UX etc)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.