Resolve / obtain the certificate intermediates of a x509 cert
Project description
Python certificate chain resolver
Resolve / obtain the certificate intermediates of a x509 certificate using the CLI or python API.
The CLI writes the full bundle to stdout. The Python API can be used to iterate over the certificates and get additional information on the bundle.
from cert_chain_resolver.api import resolve
with open('cert.pem', 'rb') as f:
fb = f.read()
chain = resolve(fb)
>>>
for cert in chain:
print(cert)
<Cert common_name="cert-chain-resolver.remcokoopmans.com" subject="CN=cert-chain-resolver.remcokoopmans.com" issuer="CN=R3,O=Let's Encrypt,C=US">
<Cert common_name="R3" subject="CN=R3,O=Let's Encrypt,C=US" issuer="CN=DST Root CA X3,O=Digital Signature Trust Co.">
<Cert common_name="DST Root CA X3" subject="CN=DST Root CA X3,O=Digital Signature Trust Co." issuer="CN=DST Root CA X3,O=Digital Signature Trust Co.">
Support
- PKCS7, PEM and DER formats
- LetsEncrypt certificates
Dependencies
- cryptography
Documentation
Read more on readthedocs
Install
$ pip install cert-chain-resolver
Usage
Installed using PIP
$ cert_chain_resolver certificate.crt > bundle.crt
Or read from stdin
$ cat certificate.crt | cert_chain_resolver > bundle.crt
After cloning the repository
Install dependencies
$ make
from file:
$ python -m cert_chain_resolver.cli certificate.crt > bundle.crt
from stdin:
$ cat certificate.crt | python -m cert_chain_resolver.cli > bundle.crt
Print the details of each certificate in resolved chain
$ cert_chain_resolver cert.pem --info
Development
bootstrap
$ make
Testing
Unit testing
$ make tests
Re-run tests on file changes:
$ make tests TEST_ARGS="-- -f"
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
cert_chain_resolver-1.0.2.tar.gz
(10.1 kB
view details)
Built Distribution
File details
Details for the file cert_chain_resolver-1.0.2.tar.gz
.
File metadata
- Download URL: cert_chain_resolver-1.0.2.tar.gz
- Upload date:
- Size: 10.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 976481f26bc76f45aba65b09d181b69dff602945535798a5d1fc75dd17f31ef1 |
|
MD5 | 016eb664a79842ef66f9e15858655c1b |
|
BLAKE2b-256 | a74d5fc653b33f64f43dda805fe1d0caa5f456e3d292972d60a0d785eb32d851 |
File details
Details for the file cert_chain_resolver-1.0.2-py3-none-any.whl
.
File metadata
- Download URL: cert_chain_resolver-1.0.2-py3-none-any.whl
- Upload date:
- Size: 13.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d064d60d4c41a13320a6704e1faea696ad1b455ae1edfe0063ec413170d7fdab |
|
MD5 | b11f11fd85fa555f8b79add98cbf49af |
|
BLAKE2b-256 | 236c0ca8854b7cc4ab8ee64ad8801e029b992aa6ba3691f71ba139e254f47a18 |