我在 .pem 文件中有一个受密码保护的私钥;我想用它来签署对远程服务器的请求。在提示输入密码后,我可以加载密钥并输入密码:
python
>>> import M2Crypto
>>> pk = M2Crypto.RSA.load_key('private.pem')
Enter passphrase:
>>>
但是,我需要这个用于每天早上重新启动的服务器进程,因此密码必须以某种方式自动传递。load_key 方法为此目的支持回调参数,因此我尝试了以下几种变体:
>>> def gimmepw():
... return 'mysecret'
...
>>> pk = M2Crypto.RSA.load_key('private.pem', gimmepw)
Traceback (most recent call last):
File "<stdin>", line 1, in ?
File "/usr/local/Plone/Python-2.4/.../M2Crypto/RSA.py", line 351, in load_key
return load_key_bio(bio, callback)
File "/usr/local/Plone/Python-2.4/.../M2Crypto/RSA.py", line 372, in load_key_bio
rsa_error()
File "/usr/local/Plone/Python-2.4/.../M2Crypto/RSA.py", line 302, in rsa_error
raise RSAError, m2.err_reason_error_string(m2.err_get_error())
M2Crypto.RSA.RSAError: bad password read
>>>
(将“...”替换为“lib/python2.4/site-packages”)
我究竟做错了什么?