Python bindings for Bergshamra XML Security (XML-DSig, XML-Enc, C14N)
Project description
pybergshamra
Python bindings for the Bergshamra XML Security library -- a pure-Rust implementation of XML Digital Signatures (XML-DSig), XML Encryption (XML-Enc), C14N canonicalization, and cryptographic primitives.
pybergshamra gives you a fast, correct, and memory-safe XML security toolkit from Python with no C dependencies to compile and no transitive native libraries to audit.
Features
- XML Digital Signatures -- sign and verify (RSA, EC, Ed25519, HMAC, post-quantum)
- XML Encryption -- encrypt and decrypt (AES-CBC/GCM, RSA-OAEP key transport)
- C14N canonicalization -- inclusive, exclusive, with/without comments
- Key management -- RSA, EC, Ed25519, X25519, HMAC, AES, 3DES, PKCS#12, X.509
- Certificate validation -- X.509 chain building and verification with CRL support
- Cryptographic primitives -- digest, PBKDF2, HKDF, ConcatKDF
- Post-quantum signatures -- ML-DSA-44/65/87, SLH-DSA
- HSM / PKCS#11 -- sign, verify, encrypt and decrypt with keys that never leave a hardware token (or SoftHSM2)
- Anti-XSW protection -- strict verification mode
- Zero Python dependencies -- ships as a single native extension
Security note: weak-digest X.509 policy
Starting with Bergshamra 0.5.x, X.509 certificate chains signed with weak digests
(MD5, SHA-1, SHA-224) are rejected by default. pybergshamra is built with
Bergshamra's legacy-algorithms feature enabled, so validate_cert_chain() and
signature verification that builds an X.509 chain accept these legacy digests for
backward compatibility with existing certificates. The policy is fixed at build time --
there is no per-call runtime toggle. To get strict, secure-by-default rejection of weak
digests, build the extension yourself with the legacy-algorithms feature removed from
the bergshamra-keys dependency in Cargo.toml.
PBKDF2 also now enforces the RFC 8018 minimum salt length of 8 bytes; shorter salts
raise CryptoError.
Installation
python3 -m pip install pybergshamra
Or with uv:
uv add pybergshamra
Wheels are compiled from Rust via maturin. Python 3.10+ is required.
Quick start
Verify a signed XML document
import pybergshamra
xml = open("signed.xml").read()
manager = pybergshamra.KeysManager()
key = pybergshamra.load_x509_cert_pem(open("cert.pem", "rb").read())
manager.add_key(key)
ctx = pybergshamra.DsigContext(manager)
result = pybergshamra.verify(ctx, xml)
if result and result.all_reference_digests_verified:
print("Valid!", result.key_info.algorithm)
elif result:
print("Valid signature, but at least one reference needs out-of-band checking")
else:
print("Invalid:", result.reason)
Sign an XML template
import pybergshamra
template = open("sign-template.xml").read()
manager = pybergshamra.KeysManager()
key = pybergshamra.load_rsa_private_pem(open("rsakey.pem", "rb").read())
manager.add_key(key)
ctx = pybergshamra.DsigContext(manager)
signed_xml = pybergshamra.sign(ctx, template)
Encrypt and decrypt
import pybergshamra
# Encrypt
manager = pybergshamra.KeysManager()
key = pybergshamra.load_x509_cert_pem(open("cert.pem", "rb").read())
manager.add_key(key)
ctx = pybergshamra.EncContext(manager)
encrypted_xml = pybergshamra.encrypt(ctx, template_xml, b"secret data")
# Decrypt
manager = pybergshamra.KeysManager()
key = pybergshamra.load_rsa_private_pem(open("rsakey.pem", "rb").read())
manager.add_key(key)
ctx = pybergshamra.EncContext(manager)
decrypted_xml = pybergshamra.decrypt(ctx, encrypted_xml)
Canonicalize XML
import pybergshamra
from pybergshamra import C14nMode
result = pybergshamra.canonicalize(xml_string, C14nMode.Exclusive)
Compute a digest
from pybergshamra import digest, Algorithm
h = digest(Algorithm.SHA256, b"hello world")
print(h.hex())
Sign with a key on an HSM (PKCS#11)
Key material stays on the token; pybergshamra talks to it over PKCS#11 (tested
against SoftHSM2). Algorithms are given as W3C URIs from Algorithm; ECDSA also
needs an ec_curve because the URI does not encode the curve.
import pybergshamra
from pybergshamra import Algorithm
provider = pybergshamra.Pkcs11Provider("/usr/lib/softhsm/libsofthsm2.so")
session = provider.open_session("1234") # user PIN
# Sign an XML template with an RSA key on the token
manager = pybergshamra.KeysManager()
sign_ctx = pybergshamra.DsigContext(manager)
sign_ctx.set_hsm_signer(
pybergshamra.Pkcs11Signer(session, "my-rsa-key", Algorithm.RSA_SHA256)
)
signed_xml = pybergshamra.sign(sign_ctx, template_xml)
# Verify with the matching public key on the token
verify_ctx = pybergshamra.DsigContext(manager)
verify_ctx.set_hsm_verifier(
pybergshamra.Pkcs11Verifier(session, "my-rsa-key", Algorithm.RSA_SHA256)
)
assert bool(pybergshamra.verify(verify_ctx, signed_xml))
EncContext exposes the same idea for encryption via set_hsm_decryptor(),
set_hsm_key_unwrapper(), set_hsm_encryptor(), and set_hsm_key_wrapper(),
each taking an allow-list of permitted algorithm URIs. The HSM operation classes
(Pkcs11Signer, Pkcs11Verifier, Pkcs11Decryptor, Pkcs11Encryptor,
Pkcs11KeyWrapper) also expose direct sign()/verify()/decrypt()/
encrypt()/wrap()/unwrap() methods for standalone use.
Run
bash hsm-test/setup.shto provision a local SoftHSM2 token, thenSOFTHSM2_CONF=hsm-test/softhsm2.local.conf pytest tests/test_hsm.pyto exercise the PKCS#11 path. The CIhsmjob does the same on every PR.
API overview
| Class / function | Purpose |
|---|---|
Algorithm |
W3C XML Security algorithm URI constants |
Key |
A cryptographic key (RSA, EC, HMAC, AES, Ed25519, etc.) |
KeyUsage |
Key usage mode (Sign, Verify, Encrypt, Decrypt, Any) |
KeysManager() |
Key store for managing keys and certificates |
DsigContext(manager) |
Configuration for XML-DSig sign/verify |
EncContext(manager) |
Configuration for XML-Enc encrypt/decrypt |
C14nMode |
Canonicalization mode (Inclusive, Exclusive, etc.) |
VerifyResult |
Result of signature verification |
verify(ctx, xml) |
Verify the first <Signature> in an XML document |
verify_all(ctx, xml) |
Verify every <Signature> (e.g. multi-signature SAML) |
sign(ctx, template) |
Sign an XML template |
sign_enveloped(ctx, xml, ...) |
Build and sign an enveloped <Signature> in one step |
encrypt(ctx, template, data) |
Encrypt data with an XML template |
decrypt(ctx, xml) |
Decrypt an XML document |
canonicalize(xml, mode) |
Canonicalize an XML document |
digest(uri, data) |
Compute a message digest |
validate_cert_chain(...) |
Validate an X.509 certificate chain |
parse_pkcs12(data, password) |
Parse a PKCS#12 container into raw keys + certs |
Pkcs11Provider / Pkcs11Session |
Load a PKCS#11 module and open a token session |
Pkcs11Signer / Pkcs11Verifier |
HSM-backed XML-DSig signing / verification |
Pkcs11Decryptor / Pkcs11Encryptor / Pkcs11KeyWrapper |
HSM-backed XML-Enc key transport / key wrap |
DsigContext(manager) is secure by default
(trusted_keys_only, strict_verification, hmac_min_out_len=160). If you need
standard W3C behaviour with inline KeyInfo extraction, opt out explicitly with
keyword arguments, for example DsigContext(manager, secure_defaults=False).
Each VerifiedReference now also reports digest_verified so callers can tell
whether a reference's digest was actually checked.
| load_key_file(path) | Load a key from file (auto-detect format) |
| load_rsa_private_pem(data) | Load an RSA private key from PEM |
| load_x509_cert_pem(data) | Load an X.509 certificate from PEM |
| load_hmac_key(data) | Create an HMAC key from raw bytes |
| load_aes_key(data) | Create an AES key from raw bytes |
| load_pem_auto(data) | Auto-detect PEM type and load |
See the full API reference for all 28 key loaders, algorithm constants, and configuration options.
Exceptions
| Exception | Raised when |
|---|---|
BergshamraError |
Base exception for all errors |
XmlError |
XML parsing or structure error |
CryptoError |
Cryptographic operation failure |
KeyLoadError |
Key loading failure |
AlgorithmError |
Unsupported algorithm |
EncryptionError |
Encryption/decryption failure |
CertificateError |
Certificate validation failure |
All exceptions inherit from BergshamraError, which inherits from Exception.
Migrating from python-xmlsec
pybergshamra (together with pyuppsala for XML building) is a complete replacement for python-xmlsec with zero C dependencies. See the migration guide for side-by-side examples.
Type stubs
A pybergshamra.pyi file is included for full IDE auto-completion and
type-checking with mypy/pyright.
Development
# Clone the repository
git clone https://github.com/kushaldas/pybergshamra.git
cd pybergshamra
# Set up the environment with uv
uv sync
# Build the native extension in development mode
uv run maturin develop
# Run the test suite
uv run pytest
# Build a release wheel
uv run maturin build --release
License
BSD-2-Clause
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pybergshamra-0.6.3.tar.gz.
File metadata
- Download URL: pybergshamra-0.6.3.tar.gz
- Upload date:
- Size: 99.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee66ba6794b377f1b733df9cb6916de50e13cd86993f950996c086c54880ce8c
|
|
| MD5 |
53e539a9c52c81c9b9eb83c1c5b5efe5
|
|
| BLAKE2b-256 |
9f8db00dfcc072d5c2ff24fae8e9fae0e53647383a3a9b11ea1285672a179648
|
Provenance
The following attestation bundles were made for pybergshamra-0.6.3.tar.gz:
Publisher:
release.yml on kushaldas/pybergshamra
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybergshamra-0.6.3.tar.gz -
Subject digest:
ee66ba6794b377f1b733df9cb6916de50e13cd86993f950996c086c54880ce8c - Sigstore transparency entry: 2046628448
- Sigstore integration time:
-
Permalink:
kushaldas/pybergshamra@025dd86ce0525457e5a5e71fd904a76b364920e9 -
Branch / Tag:
refs/tags/v0.6.3 - Owner: https://github.com/kushaldas
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@025dd86ce0525457e5a5e71fd904a76b364920e9 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybergshamra-0.6.3-cp310-abi3-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pybergshamra-0.6.3-cp310-abi3-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.10+, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d895573d7c1173fa12d9738b474f98d05a778bdc32cb25e77cbab6b99cffacb
|
|
| MD5 |
379022ef5dec9f7a29091f10fde868f3
|
|
| BLAKE2b-256 |
c29ac7c09b7dadd792c315f9a1287bb1fc642a9e9bbee2c7291bc27480379a26
|
Provenance
The following attestation bundles were made for pybergshamra-0.6.3-cp310-abi3-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on kushaldas/pybergshamra
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybergshamra-0.6.3-cp310-abi3-manylinux_2_28_x86_64.whl -
Subject digest:
3d895573d7c1173fa12d9738b474f98d05a778bdc32cb25e77cbab6b99cffacb - Sigstore transparency entry: 2046628517
- Sigstore integration time:
-
Permalink:
kushaldas/pybergshamra@025dd86ce0525457e5a5e71fd904a76b364920e9 -
Branch / Tag:
refs/tags/v0.6.3 - Owner: https://github.com/kushaldas
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@025dd86ce0525457e5a5e71fd904a76b364920e9 -
Trigger Event:
push
-
Statement type: