Skip to main content

SUNAT - sign and verify xml

Project description

SignXML Sunat is an implementation of the W3C XML Signature standard in Python. SignXML Sunat implements all of the required components of the standard, and most recommended ones. Its features are:

  • Well-supported, portable, reliable dependencies: lxml, xmlsec

  • Simple interface with useful defaults

  • Compactness, readability, and extensibility

Installation

pip install signxml_sunat

Note: SignXML SUNAT depends on lxml and xmlsec

OS

Python

Command

Ubuntu 16.04, 18.04

Python 3

pip install lxml xmlsec

Note: In windows you need install a binary for lxml and xmlsec https://www.lfd.uci.edu/~gohlke/pythonlibs

Synopsis

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

from signxml_sunat import XMLSigner, XMLVerifier

signed_root = XMLSigner().sign('doc.xml', key_data='rsakey.pem', cert_data='rsacert.pem')
# if you need password
# signed_root = XMLSigner().sign('doc.xml', key_data='rsakey.pem', cert_data='rsacert.pem', password='p4ssw0rd')
verified = XMLVerifier().verify('signed_doc.xml', key_data='rsakey.pem')
# if you need password
# verified_data = XMLVerifier().verify('signed_doc.xml', key_data='rsakey.pem', password='p4ssw0rd')

Authors

  • Danilo Britto Nuñez

Bugs

Please report bugs, issues, feature requests, etc. on GitHub.

Project details


Download files

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

Source Distribution

signxml_sunat-1.0.3.tar.gz (2.4 kB view hashes)

Uploaded Source

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