【发布时间】:2020-10-10 16:13:54
【问题描述】:
我需要签署一个 SAML 断言,因为可以在此页面上执行此操作: https://www.samltool.com/sign_response.php
就我而言,我使用的是 Python,而我的 SAML 位于字符串中。
你有什么建议?
最好的问候,
尼科。
【问题讨论】:
标签: python-3.x saml-2.0 onelogin
我需要签署一个 SAML 断言,因为可以在此页面上执行此操作: https://www.samltool.com/sign_response.php
就我而言,我使用的是 Python,而我的 SAML 位于字符串中。
你有什么建议?
最好的问候,
尼科。
【问题讨论】:
标签: python-3.x saml-2.0 onelogin
我终于使用signxml lib 成功了。
提醒一下,我想签署 SAML 断言。
我从文件中获取未签名的 SAML。然后我将这个标签
代码如下:
import re
from lxml import etree
from signxml import XMLSigner, XMLVerifier
with open('saml_to_sign.xml', 'r') as file :
data_to_sign = file.read()
with open("/vagrant/my_cert.crt", "r") as cert,\
open("/vagrant/my_key.key", "r") as key:
certificate = cert.read()
private_key = key.read()
p = re.search('<Subject>', data_to_sign).start()
tmp_message = data_to_sign[:p]
tmp_message = tmp_message +\
'<ds:Signature xmlns:ds="http://www.w3.org/2000/09/xmldsig#" Id="placeholder"></ds:Signature>'
data_to_sign = tmp_message + data_to_sign[p:]
print(data_to_sign)
saml_root = etree.fromstring(data_to_sign)
signed_saml_root = XMLSigner(c14n_algorithm="http://www.w3.org/2001/10/xml-exc-c14n#")\
.sign(saml_root, key=private_key, cert=certificate)
verified_data = XMLVerifier().verify(signed_saml_root, x509_cert=certificate).signed_xml
signed_saml_root_str = etree.tostring(signed_saml_root, encoding='unicode')
print(signed_saml_root_str)
【讨论】: