I have a query string I need to encrypt using AES in CBC mode with zero padding, before finally encoding it to base64 and I need to run this on Google App Engine in Python.
I’ve had a look around and can’t be sure what works in GAE and what doesn’t, I’m also finding it hard to get example code of some of those I believe should work, such as (http://code.google.com/p/slowaes/).
Does anyone have a code example or link to one for AES encryption in python on Google App Engine?
Thanks,
Denis
PyCrypto is supported on App Engine. I would recommend checking out examples and docs for PyCrypto – they should function the same on App Engine as everywhere else.