PKI tools for e.g. checking certificate CRL/OCSP revocation
Project description
PKI tools exposes a high level cryptography
API for e.g.:
- Loading certificates from PEM strings/files/cryptography object into a pydantic model including all x509 v3 extensions
- Checking revocation of certificates using OCSP with CRL fallback
Docs
Documentation is available at: https://pki-tools.fulder.dev
Quickstart
Install
pip install pki-tools
Usage
Loading certificate
from pki_tools import Certificate
cert_pem = """
-----BEGIN CERTIFICATE-----
<CERT_PEM_BYTES>
-----END CERTIFICATE-----
"""
cert = Certificate.from_pem_string(cert_pem)
Loading chain
from pki_tools import Chain
issuer_cert_pem = """
-----BEGIN CERTIFICATE-----
<ISSUER_CERT_PEM_BYTES>
-----END CERTIFICATE-----
"""
chain = Chain.from_pem_string(issuer_cert_pem)
Checking revocation using OCSP with CRL fallback
The following example is using the cert
and chain
from the examples above
from pki_tools import is_revoked
if is_revoked(cert, chain):
print("Certificate Revoked!")
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
pki_tools-0.0.30.tar.gz
(16.8 kB
view hashes)
Built Distribution
pki_tools-0.0.30-py3-none-any.whl
(22.0 kB
view hashes)
Close
Hashes for pki_tools-0.0.30-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1a68c0fea957faca4aebe1302fdb8c2cb004379bf43ccbd76011992cc15d8ea |
|
MD5 | db41ed94c598f95ca225e2a5b58ed4f2 |
|
BLAKE2b-256 | 53e86f2c1d4d3f081f34b995cd5b5efc1e97668709cf0984de88c0919f983fc2 |