Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/xml/13.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
PythonSignXML-仅使用公钥/私钥对XML文档进行签名_Python_Xml_Django_Public Key Encryption - Fatal编程技术网

PythonSignXML-仅使用公钥/私钥对XML文档进行签名

PythonSignXML-仅使用公钥/私钥对XML文档进行签名,python,xml,django,public-key-encryption,Python,Xml,Django,Public Key Encryption,我正在使用asp.net应用程序的django端口,该应用程序仅使用公钥/私钥对生成并签署xml文档 我已经成功地复制了xml生成的每个方面,除了签名方面。我找到了signxml库,它似乎允许我这样做,但我不知道如何让它工作。下面是我得到的代码(以示例为模型): signprivatepath和signpublicpath都是PEM格式密钥的路径 当我运行代码时,它返回以下错误: Environment: Request Method: GET Request URL: http://127

我正在使用asp.net应用程序的django端口,该应用程序仅使用公钥/私钥对生成并签署xml文档

我已经成功地复制了xml生成的每个方面,除了签名方面。我找到了signxml库,它似乎允许我这样做,但我不知道如何让它工作。下面是我得到的代码(以示例为模型):

signprivatepath和signpublicpath都是PEM格式密钥的路径

当我运行代码时,它返回以下错误:

Environment:


Request Method: GET
Request URL: http://127.0.0.1:8000/site/245/download-site-license

Django Version: 1.9.5
Python Version: 3.5.1
Installed Applications:
['licenses.apps.LicensesConfig',
 'simple_history',
 'django.contrib.admindocs',
 'django.contrib.admin',
 'django.contrib.auth',
 'django.contrib.contenttypes',
 'django.contrib.sessions',
 'django.contrib.messages',
 'django.contrib.staticfiles']
Installed Middleware:
['simple_history.middleware.HistoryRequestMiddleware',
 'django.middleware.security.SecurityMiddleware',
 'django.contrib.sessions.middleware.SessionMiddleware',
 'django.middleware.common.CommonMiddleware',
 'django.middleware.csrf.CsrfViewMiddleware',
 'django.contrib.auth.middleware.AuthenticationMiddleware',
 'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
 'django.contrib.messages.middleware.MessageMiddleware',
 'django.middleware.clickjacking.XFrameOptionsMiddleware']



Traceback:

File "C:\Users\servant\AppData\Local\Programs\Python\Python35-32\lib\site-packages\django\core\handlers\base.py" in get_response
  149.                     response = self.process_exception_by_middleware(e, request)

File "C:\Users\servant\AppData\Local\Programs\Python\Python35-32\lib\site-packages\django\core\handlers\base.py" in get_response
  147.                     response = wrapped_callback(request, *callback_args, **callback_kwargs)

File "C:\projects\django\swlicensing\licenses\views\site.py" in downloadSiteLicense
  206.         signedXMLTree = signXML(treestring)

File "C:\projects\django\swlicensing\licenses\views\site.py" in signXML
  144.         c14n_algorithm='http://www.w3.org/TR/2001/REC-xml-c14n-20010315'

File "C:\Users\servant\AppData\Local\Programs\Python\Python35-32\lib\site-packages\signxml-1.0.0-py3.5.egg\signxml\__init__.py" in sign
  414.                 key = load_pem_private_key(self.key, password=passphrase, backend=default_backend())

File "C:\Users\servant\AppData\Local\Programs\Python\Python35-32\lib\site-packages\cryptography\hazmat\primitives\serialization.py" in load_pem_private_key
  20.     return backend.load_pem_private_key(data, password)

File "C:\Users\servant\AppData\Local\Programs\Python\Python35-32\lib\site-packages\cryptography\hazmat\backends\multibackend.py" in load_pem_private_key
  282.             return b.load_pem_private_key(data, password)

File "C:\Users\servant\AppData\Local\Programs\Python\Python35-32\lib\site-packages\cryptography\hazmat\backends\openssl\backend.py" in load_pem_private_key
  1606.             password,

File "C:\Users\servant\AppData\Local\Programs\Python\Python35-32\lib\site-packages\cryptography\hazmat\backends\openssl\backend.py" in _load_key
  1784.         mem_bio = self._bytes_to_bio(data)

File "C:\Users\servant\AppData\Local\Programs\Python\Python35-32\lib\site-packages\cryptography\hazmat\backends\openssl\backend.py" in _bytes_to_bio
  1058.         data_char_p = self._ffi.new("char[]", data)

Exception Type: TypeError at /site/245/download-site-license
Exception Value: initializer for ctype 'char[]' must be a bytes or list or tuple, not str

有办法做到这一点吗?我从中复制的代码似乎没有使用证书,只是使用私钥本身。还是我遗漏了什么?

cert和
key
变量需要是字节数组,因此通过以下命令将其作为字节数组读取

cert = open(signprivatepath, "rb").read()
key = open(signpublicpath, "rb").read()
然后将其传递到
符号
函数中,就像之前一样

signed_root = xmldsig_stuff.sign(
    key=key,
    cert=cert,
    algorithm='rsa-sha1',
    c14n_algorithm='http://www.w3.org/TR/2001/REC-xml-c14n-20010315'
    )
signed_root = xmldsig_stuff.sign(
    key=key,
    cert=cert,
    algorithm='rsa-sha1',
    c14n_algorithm='http://www.w3.org/TR/2001/REC-xml-c14n-20010315'
    )