davidzr / python-xmlsig

Native XML Signature module for Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

XmlSIG: Python native XML Signature

A python native library that signs and verifies xml signatures

Highlights:
  • Build on top of lxml and cryptography

Status

https://travis-ci.org/etobella/python-xmlsig.svg?branch=master http://codecov.io/github/etobella/python-xmlsig/coverage.svg?branch=master

Installation

pip install xmlsig

Usage

import xmlsig

sign = xmlsig.template.create(c14n_method=xmlsig.constants.TransformExclC14N, sign_method=xmlsig.constants.TransformRsaSha1)
ref = xmlsig.template.add_reference(sign, xmlsig.constants.TransformSha1)
xmlsig.template.add_transform(ref, xmlsig.constants.TransformEnveloped)

ctx = xmlsig.SignatureContext()

To have more examples, look at the source code of the testings

Functionality

Signature is only valid using RSA and HMAC validation. ECDSA and DSA is still being implemented

License

This library is published under the BSD license.

Contributors

About

Native XML Signature module for Python

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Python 98.9%Language:Makefile 1.1%