加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Python > 正文

python – 没有M2Crypto的非独立PKCS#7 SHA1 RSA签名

发布时间:2020-12-20 13:52:10 所属栏目:Python 来源:网络整理
导读:我正在尝试在 python3上创建一个非分离的签名.我目前有代码在python2上用m2crypto执行此操作,但m2crypto不适用于python3. 我一直在尝试rsa,pycrypto和openssl,但还没有看到如何找到. 这是等效的OpenSSL命令: openssl smime -sign -signer $CRTFILE -inkey $
我正在尝试在 python3上创建一个非分离的签名.我目前有代码在python2上用m2crypto执行此操作,但m2crypto不适用于python3.

我一直在尝试rsa,pycrypto和openssl,但还没有看到如何找到.

这是等效的OpenSSL命令:

openssl smime -sign -signer $CRTFILE -inkey $KEYFILE -outformDER -nodetach

这是我无法用rsa,pyopenssl或pycrypto模仿的nodetach选项.

有谁在python3上这样做?我想尽可能避免使用Popen openssl.

解决方法

我实际上最终用OpenSSL.crypto解决了这个问题,尽管有一些内部方法:

from OpenSSL import crypto

PKCS7_NOSIGS = 0x4  # defined in pkcs7.h


def create_embeded_pkcs7_signature(data,cert,key):
    """
    Creates an embeded ("nodetached") pkcs7 signature.

    This is equivalent to the output of::

        openssl smime -sign -signer cert -inkey key -outform DER -nodetach < data

    :type data: bytes
    :type cert: str
    :type key: str
    """  # noqa: E501

    assert isinstance(data,bytes)
    assert isinstance(cert,str)

    try:
        pkey = crypto.load_privatekey(crypto.FILETYPE_PEM,key)
        signcert = crypto.load_certificate(crypto.FILETYPE_PEM,cert)
    except crypto.Error as e:
        raise ValueError('Certificates files are invalid') from e

    bio_in = crypto._new_mem_buf(data)
    pkcs7 = crypto._lib.PKCS7_sign(
        signcert._x509,pkey._pkey,crypto._ffi.NULL,bio_in,PKCS7_NOSIGS
    )
    bio_out = crypto._new_mem_buf()
    crypto._lib.i2d_PKCS7_bio(bio_out,pkcs7)
    signed_data = crypto._bio_to_string(bio_out)

    return signed_data

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读