Skip to main content

Python XML Signature library

Project description

SignXML is an implementation of the W3C XML Signature standard in Python. This standard (also known as XMLDSig and RFC 3275) is used to provide payload security in SAML 2.0, among other uses. Three versions of the standard exist (Version 1 “Second Edition”, Version 1.1, and Version 2.0). SignXML implements all of the required components of the standard, and most recommended ones. Its features are:

  • Use of defusedxml.lxml to defend against common XML-based attacks when verifying signatures

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

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

  • Modern Python compatibility (2.7-3.4+ and PyPy)

  • Well-supported, portable, reliable dependencies: lxml, defusedxml, cryptography, eight, pyOpenSSL

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

  • Simple interface with useful defaults

  • Compactness, readability, and extensibility

Installation

pip install signxml

Note: SignXML depends on lxml and cryptography, which in turn depend on OpenSSL, LibXML, and Python tools to interface with them. On Ubuntu, you can install those with:

apt-get install python-dev libxml2-dev libxslt1-dev libssl-dev python-cffi

Ubuntu 12.04: python-cffi is not available on 12.04. Use apt-get install libffi-dev followed by pip install cffi.

Synopsis

SignXML uses the ElementTree API (also supported by lxml) to work with XML data.

from signxml import xmldsig

cert = open("example.pem").read()
key = open("example.key").read()
root = ElementTree.fromstring(signature_data)
xmldsig(root).sign(key=key, cert=cert)
verified_data = xmldsig(root).verify()

Verifying SAML assertions

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

from lxml import etree
from base64 import b64decode
from signxml import xmldsig

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

assertion_data = xmldsig(b64decode(assertion_body)).verify(x509_cert=cert)

XML signature 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():

xmldsig(root).sign(method=signxml.methods.detached, key=key, cert=cert)
verified_data = xmldsig(root).verify()

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 xmldsig.verify(uri_resolver=...).

See the API documentation for more.

Authors

  • Andrey Kislyuk

License

Licensed under the terms of the Apache License, Version 2.0.

https://img.shields.io/travis/kislyuk/signxml.svg https://img.shields.io/coveralls/kislyuk/signxml.svg https://img.shields.io/pypi/v/signxml.svg https://img.shields.io/pypi/dm/signxml.svg https://img.shields.io/pypi/l/signxml.svg https://readthedocs.org/projects/signxml/badge/?version=latest

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

signxml-0.4.3.tar.gz (142.8 kB view details)

Uploaded Source

Built Distribution

signxml-0.4.3-py2.py3-none-any.whl (26.3 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file signxml-0.4.3.tar.gz.

File metadata

  • Download URL: signxml-0.4.3.tar.gz
  • Upload date:
  • Size: 142.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for signxml-0.4.3.tar.gz
Algorithm Hash digest
SHA256 9d58b10d1ea0c8d87e457857f3d5fe3f2cee1bd678f1e8ff7a06389ad754bb50
MD5 346d5c14f06dbb3fc17035d100fd9907
BLAKE2b-256 670df3ce5a77faceabfa42639b2fb49a895fb73f4cb10c60b4ebd28812816794

See more details on using hashes here.

File details

Details for the file signxml-0.4.3-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for signxml-0.4.3-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 851804631de869315800a3d0689dc710378e8124e4de57f6533053faa2cb8763
MD5 1d34a7b0983e0c40dc973e58788db37f
BLAKE2b-256 284fbc0d4a1902d2fc41169848f779ad1927cfb16ce5cb9d2827e6528ba81eb2

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page