我有一个使用 PyCrypto 使用 AES 加密字符串的函数。当我在单元测试中调用该函数时,一切正常。在生产环境中,它也可以正常工作。但是,在 GAE 开发服务器上调用该函数时,会抛出错误:“ImportError: cannot import name blockalgo”。我在 Windows 7(64 位)和 Mac OS 10.5 上对其进行了测试。两者都导致相同的错误。我正在使用带有 Python 2.7 的 Google App Engine。可能是什么问题呢?
应用程序.yaml
application: xxx
version: 6
runtime: python27
api_version: 1
threadsafe: true
libraries:
- name: django
version: "1.2"
- name: webapp2
version: "2.3"
- name: jinja2
version: "2.6"
- name: pycrypto
version: "2.3"
- name: PIL
version: "1.1.7"
builtins:
- appstats: on
- remote_api: on
inbound_services:
- mail
- warmup
加密功能:
def encrypt(plaintext):
from Crypto.Cipher import AES
import hashlib
password = 'xxx'
key = hashlib.sha256(password).digest()
mode = AES.MODE_ECB
encryptor = AES.new(key, mode)
BLOCK_SIZE = 16
PADDING = '{'
pad = lambda s: s + (BLOCK_SIZE - len(s) % BLOCK_SIZE) * PADDING
EncodeAES = lambda c, s: b58encode(c.encrypt(pad(s)))
encrypted = EncodeAES(encryptor, plaintext)
if len(encrypted) < 22:
for i in range (len(encrypted), 22):
encrypted += "_"
return encrypted