PKI tools for e.g. checking certificate CRL/OCSP revocation
Project description
pki-tools
PKI tools exposes a high level cryptography
API for e.g.:
- checking revocation of certificates:
- using CRL defined in the x509 CRL distribution points extension (https://datatracker.ietf.org/doc/html/rfc5280.html#section-4.2.1.13)
- using OCSP defined in the x509 Authority Information Access extension (https://datatracker.ietf.org/doc/html/rfc5280.html#section-4.2.2.1)
- loading certificates
Installation
pip install pki-tools
Usage
CRL
Checking revocation using PEM encoded certificate
from pki_tools.crl import check_revoked, Revoked, Error
cert_pem = """
-----BEGIN CERTIFICATE-----
<CERTIFICATE_PEM_BYTES>
-----END CERTIFICATE-----
"""
try:
check_revoked(cert_pem)
except Revoked as e:
print(f"Certificate revoked: {e}")
except Error as e:
print(f"Revocation check failed. Error: {e}")
raise
Checking revocation using an already loaded cryptography x509.Certificate:
from cryptography import x509
from pki_tools.ocsp import check_revoked_crypto_cert, Revoked, Error
cert : x509.Certificate = ...
issuer: x509.Certificate = ...
try:
check_revoked_crypto_cert(cert, issuer)
except Revoked as e:
print(f"Certificate revoked: {e}")
except Error as e:
print(f"Revocation check failed. Error: {e}")
raise
OCSP
Checking revocation using PEM encoded certificate
from pki_tools.ocsp import check_revoked, Revoked, Error
cert_pem = """
-----BEGIN CERTIFICATE-----
<CERTIFICATE_PEM_BYTES>
-----END CERTIFICATE-----
"""
issuer_pem = """
-----BEGIN CERTIFICATE-----
<ISSUER_PEM_BYTES>
-----END CERTIFICATE-----
"""
try:
check_revoked(cert_pem, issuer_pem)
except Revoked as e:
print(f"Certificate revoked: {e}")
except Error as e:
print(f"Revocation check failed. Error: {e}")
raise
Checking revocation using an already loaded cryptography x509.Certificate:
from cryptography import x509
from pki_tools.ocsp import check_revoked_crypto_cert, Revoked, Error
cert : x509.Certificate = ...
issuer_cert : x509.Certificate = ...
try:
check_revoked_crypto_cert(cert, issuer_cert)
except Revoked as e:
print(f"Certificate revoked: {e}")
except Error as e:
print(f"Revocation check failed. Error: {e}")
raise
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.2.tar.gz
(3.8 kB
view hashes)
Built Distribution
Close
Hashes for pki_tools-0.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a1610e61648d1a8ba261680560eda52fcc76ab2b3f3abbc6172cce4324f63fc0 |
|
MD5 | bc4a986184b6b81fe450207ee5e1794e |
|
BLAKE2b-256 | 453940df5ad9c3104d48247e62a210bbc2ffe12432098c33735c22c8015424d4 |