尝试使用Python验证SHA1消息签名。我究竟做错了什么?

时间:2013-03-03 15:56:22

标签: python cryptography m2crypto

我正在尝试通过从网站下载证书并提取其公钥来验证邮件的SHA1签名。在SO(herehere)的其他地方有一些示例代码,但我还没弄清楚我做错了什么。

import requests
from M2Crypto import BIO, RSA, EVP, X509

def verify_message(cert_url, msg, sig):
    cert_text = requests.get(cert_url, verify=True)
    cert = X509.load_cert_string(cert_text.content)
    pubkey = cert.get_pubkey()
    sig = sig.decode('base64')

    # Write a few files to disk for debugging purposes
    f = open("sig", "wb")
    f.write(sig)
    f.close()

    f = open("msg", "w")
    f.write(msg)
    f.close()

    f = open("mypubkey.pem", "w")
    f.write(pubkey.get_rsa().as_pem())
    f.close()

    pubkey.reset_context(md='sha1')
    pubkey.verify_init()
    pubkey.verify_update(msg)
    assert pubkey.verify_final(sig) == 1

这给了我以下断言错误:

  File "/tmp/test.py", line 71, in verify_message
    assert pubkey.verify_final(sig) == 1
AssertionError

但是,如果我从命令行使用openssl以及从上面的Python脚本生成的文件,它可以正常工作:

[jamie@test5 tmp]$ openssl dgst -sha1 -verify mypubkey.pem -signature sig msg
Verified OK

我在这里碰了一堵砖墙;任何建议将不胜感激。谢谢!

2 个答案:

答案 0 :(得分:5)

您的代码运行正常 - https://gist.github.com/kalloc/5106808 我在这里看到了别的错误

答案 1 :(得分:1)

这段代码在我的最后工作得很好。