1 回答
TA贡献1829条经验 获得超7个赞
我找到了一种更高效、更安全的方法,这里是代码(直接取自 PKCS1_v1_5 文档):以下示例显示了如何使用私有 RSA 密钥(从文件加载)来计算签名信息:
>>> from Crypto.Signature import pkcs1_15
>>> from Crypto.Hash import SHA256
>>> from Crypto.PublicKey import RSA
>>>
>>> message = 'To be signed'
>>> key = RSA.import_key(open('private_key.der').read())
>>> h = SHA256.new(message)
>>> signature = pkcs1_15.new(key).sign(h)
在另一端,接收者可以使用匹配的公共 RSA 密钥验证签名(以及消息的真实性):
>>> key = RSA.import_key(open('public_key.der').read())
>>> h = SHA.new(message)
>>> try:
>>> pkcs1_15.new(key).verify(h, signature)
>>> print "The signature is valid."
>>> except (ValueError, TypeError):
>>> print "The signature is not valid."
希望这会有所帮助,如果不是这里是页面本身的链接:https ://pycryptodome.readthedocs.io/en/latest/src/signature/pkcs1_v1_5.html
添加回答
举报