I would like to encrypt the data transferred between GAE app and my android application (https will not help since the key should be dynamic). I am thinking about AES (128-bit) encryption.
I've tried to use pycrypto
(GAE SDK 1.8.6, python 2.7, OS X 10.9):
libraries:
- name: pycrypto
version: "2.6"
But when I import Crypto
it can not find the module:
ImportError: No module named Crypto
Is there any other built-in module I can use? Or, is there any way to be able to use pycrypto
(should I install it manually)?