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.31.tar.gz
(24.1 kB
view hashes)
Built Distribution
pki_tools-0.0.31-py3-none-any.whl
(32.0 kB
view hashes)
Close
Hashes for pki_tools-0.0.31-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e06e41e844798bc99d7e241b60dc60fa15053f0f91bd423866429717fbf3471c |
|
MD5 | 46e537e84e8fcbda8c83fc4df7f74282 |
|
BLAKE2b-256 | b3fd837e4c60fd6dee2761c2eb13030fc19ae2417b414e891dd0ce29b158365c |