经过一番摸索后,我找到了这个问题的一些常见答案,例如:
How to load an RSA key from a PEM file and use it in python-crypto
一些代码:
x509 = X509.load_cert_string(certificate)
pubkey = x509.get_pubkey()
pubkey.reset_context(md=sha1)
pubkey.verify_init()
pubkey.verify_update(content)
decoded_signature = signature.decode('base64')
if pubkey.verify_final(decoded_signature)==0:
print 'error'
sys.exit(1)
并且上面提供的代码在 M2Crypto 0.20 中运行良好。但是我需要使用 M2Crypto 0.16(RHEL5 中的官方包)做完全相同的想法,并且我在使用 pubkey.verify_final 方法时遇到问题,因为在这个特定版本中签名参数不存在。那么我该怎么做呢?使用 M2Crypto 0.16 谢谢。