views:

150

answers:

1

I'm using PyCrypto (on google app engine) for AES encryption.

PyCrypto gives I guess a raw interface to AES--i need to pad my keys and my inputs to 16 byte multiples.

Is there a higher level library which takes care of this stuff for me?

+5  A: 

An easy, friendly wrapper on top of PyCrypto is ezPyCrypto.

Alex Martelli