signxml 4.4.0


pip install signxml

  Latest version

Released: Mar 01, 2026


Meta
Author: Andrey Kislyuk
Maintainer: Andrey Kislyuk
Requires Python: >=3.9

Classifiers

Development Status
  • 5 - Production/Stable

Intended Audience
  • Developers

License
  • OSI Approved :: Apache Software License

Operating System
  • MacOS :: MacOS X
  • POSIX

Programming Language
  • Python
  • Python :: 3
  • Python :: 3.10
  • Python :: 3.11
  • Python :: 3.12
  • Python :: 3.13
  • Python :: 3.14
  • Python :: Implementation :: CPython
  • Python :: Implementation :: PyPy

Topic
  • Software Development
  • Software Development :: Libraries :: Python Modules

SignXML is an implementation of the W3C XML Signature standard in Python. This standard (also known as “XMLDSig”) is used to provide payload security in SAML 2.0, XAdES, EBICS, and WS-Security, among other uses. The standard is defined in the W3C Recommendation XML Signature Syntax and Processing Version 1.1. SignXML implements all of the required components of the Version 1.1 standard, and most recommended ones. Its features are:

  • Use of a libxml2-based XML parser configured to defend against common XML attacks when verifying signatures

  • Extensions to allow signing with and verifying X.509 certificate chains, including hostname/CN validation

  • Extensions to sign and verify XAdES signatures

  • Support for exclusive XML canonicalization with inclusive prefixes (InclusiveNamespaces PrefixList, required to verify signatures generated by some SAML implementations)

  • Modern Python compatibility (3.9-3.13+ and PyPy)

  • Well-supported, portable, reliable dependencies: lxml and cryptography

  • Comprehensive testing (including the XMLDSig interoperability suite) and continuous integration

  • Simple interface with useful, ergonomic, and secure defaults (no network calls, XSLT or XPath transforms)

  • Compactness, readability, and extensibility

Installation

pip install signxml

Synopsis

SignXML uses the lxml ElementTree API to work with XML data.

from lxml import etree
from signxml import XMLSigner, XMLVerifier

data_to_sign = "<Test/>"
cert = open("cert.pem").read()
key = open("privkey.pem").read()
root = etree.fromstring(data_to_sign)
signed_root = XMLSigner().sign(root, key=key, cert=cert)
verified_data = XMLVerifier().verify(signed_root).signed_xml

To make this example self-sufficient for test purposes:

  • Generate a test certificate and key using openssl req -x509 -nodes -subj "/CN=test" -days 1 -newkey rsa -keyout privkey.pem -out cert.pem (run apt-get install openssl, yum install openssl, or brew install openssl if the openssl executable is not found).

  • Pass the x509_cert=cert keyword argument to XMLVerifier.verify(). (In production, ensure this is replaced with the correct configuration for the trusted CA or certificate - this determines which signatures your application trusts.)

Verifying SAML assertions

Assuming metadata.xml contains SAML metadata for the assertion source:

from lxml import etree
from base64 import b64decode
from signxml import XMLVerifier

with open("metadata.xml", "rb") as fh:
    cert = etree.parse(fh).find("//ds:X509Certificate").text

assertion_data = XMLVerifier().verify(b64decode(assertion_body), x509_cert=cert).signed_xml

XML signature construction methods: enveloped, detached, enveloping

The XML Signature specification defines three ways to compose a signature with the data being signed: enveloped, detached, and enveloping signature. Enveloped is the default method. To specify the type of signature that you want to generate, pass the method argument to sign():

signed_root = XMLSigner(method=signxml.methods.detached).sign(root, key=key, cert=cert)
verified_data = XMLVerifier().verify(signed_root).signed_xml

For detached signatures, the code above will use the Id or ID attribute of root to generate a relative URI (<Reference URI="#value"). You can also override the value of URI by passing a reference_uri argument to sign(). To verify a detached signature that refers to an external entity, pass a callable resolver in XMLVerifier().verify(data, uri_resolver=...).

See the API documentation for more details.

XML representation details: Configuring namespace prefixes and whitespace

Some applications require a particular namespace prefix configuration - for example, a number of applications assume that the http://www.w3.org/2000/09/xmldsig# namespace is set as the default, unprefixed namespace instead of using the customary ds: prefix. While in normal use namespace prefix naming is an insignificant representation detail, it can be significant in some XML canonicalization and signature configurations. To configure the namespace prefix map when generating a signature, set the XMLSigner.namespaces attribute:

signer = signxml.XMLSigner(...)
signer.namespaces = {None: signxml.namespaces.ds}
signed_root = signer.sign(...)

Similarly, whitespace in the signed document is significant for XML canonicalization and signature purposes. Do not pretty-print the XML after generating the signature, since this can unfortunately render the signature invalid.

XML parsing security and compatibility with xml.etree.ElementTree

SignXML uses the lxml ElementTree library, not the ElementTree from Python’s standard library, to work with XML. lxml is used due to its superior resistance to XML attacks, as well as XML canonicalization and namespace organization features. It is recommended that you pass XML string input directly to signxml before further parsing, and use lxml to work with untrusted XML input in general. If you do pass xml.etree.ElementTree objects to SignXML, you should be aware of differences in XML namespace handling between the two libraries. See the following references for more information:

XAdES signatures

XAdES (“XML Advanced Electronic Signatures”) is a standard for attaching metadata to XML Signature objects. This standard is endorsed by the European Union as the implementation for its eSignature regulations.

SignXML supports signing and verifying documents using XAdES signatures:

from signxml import DigestAlgorithm
from signxml.xades import (XAdESSigner, XAdESVerifier, XAdESVerifyResult,
                           XAdESSignaturePolicy, XAdESDataObjectFormat)
signature_policy = XAdESSignaturePolicy(
    Identifier="MyPolicyIdentifier",
    Description="Hello XAdES",
    DigestMethod=DigestAlgorithm.SHA256,
    DigestValue="Ohixl6upD6av8N7pEvDABhEL6hM=",
)
data_object_format = XAdESDataObjectFormat(
    Description="My XAdES signature",
    MimeType="text/xml",
)
signer = XAdESSigner(
    signature_policy=signature_policy,
    claimed_roles=["signer"],
    data_object_format=data_object_format,
    c14n_algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315",
)
signed_doc = signer.sign(doc, key=private_key, cert=certificate)
verifier = XAdESVerifier()
verify_results = verifier.verify(
    signed_doc, x509_cert=certificate, expect_references=3, expect_signature_policy=signature_policy
)
for verify_result in verify_results:
    if isinstance(verify_result, XAdESVerifyResult):
        verify_result.signed_properties  # use this to access parsed XAdES properties

Authors

License

Copyright 2014-2024, Andrey Kislyuk and SignXML contributors. Licensed under the terms of the Apache License, Version 2.0. Distribution of the LICENSE and NOTICE files with source copies of this package and derivative works is REQUIRED as specified by the Apache License.

https://github.com/XML-Security/signxml/workflows/Test%20suite/badge.svg https://codecov.io/github/XML-Security/signxml/coverage.svg?branch=master https://img.shields.io/pypi/v/signxml.svg https://img.shields.io/pypi/l/signxml.svg
4.4.0 Mar 01, 2026
4.3.1 Feb 18, 2026
4.3.0 Feb 14, 2026
4.2.2 Jan 21, 2026
4.2.1 Jan 19, 2026
4.2.0 Aug 20, 2025
4.1.0 Jun 28, 2025
4.0.5 Jun 02, 2025
4.0.4 Jun 01, 2025
4.0.3 Nov 24, 2024
4.0.2 Sep 11, 2024
4.0.1 Aug 30, 2024
4.0.0 Aug 22, 2024
3.2.2 Jan 29, 2024
3.2.1 Aug 06, 2023
3.2.0 Apr 13, 2023
3.1.1 Apr 08, 2023
3.1.0 Jan 04, 2023
3.0.2 Nov 29, 2022
3.0.1 Nov 27, 2022
3.0.0 Nov 14, 2022
2.10.1 Sep 09, 2022
2.10.0 Aug 21, 2022
2.9.0 Oct 08, 2021
2.8.2 May 14, 2021
2.8.1 Oct 29, 2020
2.8.0 Jun 21, 2020
2.7.3 Jun 10, 2020
2.7.2 Dec 02, 2019
2.7.1 Nov 30, 2019
2.7.0 Nov 30, 2019
2.6.0 Jan 11, 2019
2.5.2 Dec 07, 2017
2.4.0 Jul 10, 2017
2.3.0 Apr 24, 2017
2.2.6 Apr 12, 2017
2.2.4 Mar 19, 2017
2.2.3 Dec 20, 2016
2.2.2 Dec 20, 2016
2.2.1 Sep 26, 2016
2.2.0 Sep 25, 2016
2.1.4 Sep 19, 2016
2.0.0 Aug 05, 2016
1.0.2 Aug 01, 2016
1.0.1 Jul 15, 2016
1.0.0 Apr 08, 2016
0.6.0 Mar 24, 2016
0.5.0 Mar 03, 2016
0.4.6 Nov 28, 2015
0.4.5 Nov 08, 2015
0.4.4 Aug 07, 2015
0.4.3 Jul 26, 2015
0.4.2 May 24, 2015
0.4.1 Apr 21, 2015
0.4.0 Mar 08, 2015
0.3.9 Feb 04, 2015
0.3.8 Feb 04, 2015
0.3.7 Feb 04, 2015
0.3.6 Jan 10, 2015
0.3.5 Dec 23, 2014
0.3.4 Dec 15, 2014
0.3.3 Dec 13, 2014
0.3.2 Dec 12, 2014
0.3.1 Oct 17, 2014
0.3.0 Oct 17, 2014
0.2.9 Oct 15, 2014
0.2.8 Oct 14, 2014
0.2.7 Oct 14, 2014
0.2.6 Oct 13, 2014
0.2.5 Oct 13, 2014
0.2.4 Oct 13, 2014
0.2.3 Oct 13, 2014
0.2.2 Oct 04, 2014
0.2.1 Oct 04, 2014
0.2.0 Oct 03, 2014
0.1.9 Sep 27, 2014
0.1.8 Sep 26, 2014
0.1.7 Sep 26, 2014
0.1.6 Sep 26, 2014
0.1.5 Sep 26, 2014
0.1.4 Sep 26, 2014
0.1.3 Sep 23, 2014
0.1.2 Sep 22, 2014
0.1.1 Sep 22, 2014
0.1.0 Sep 22, 2014
0.0.1 Sep 09, 2014

Wheel compatibility matrix

Platform Python 3
any

Files in release

Extras:
Dependencies:
certifi (>=2023.11.17)
cryptography (>=43)
lxml (<7,>=5.2.1)