A python native library that signs and verifies xml signatures
- Highlights:
- Build on top of lxml and cryptography
pip install xmlsig
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
Signature is only valid using RSA and HMAC validation. ECDSA and DSA is still being implemented
This library is published under the LGPL-3 license.
- Enric Tobella <[email protected]>