Skip to main content

Resolve / obtain the certificate intermediates of a x509 cert

Project description

Python certificate chain resolver

Licence CI Docs Downloads Python) PyPI - Wheel PyPI

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

Pypi

$ 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


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.2.1.tar.gz (12.2 kB view details)

Uploaded Source

Built Distribution

cert_chain_resolver-1.2.1-py3-none-any.whl (15.4 kB view details)

Uploaded Python 3

File details

Details for the file cert_chain_resolver-1.2.1.tar.gz.

File metadata

  • Download URL: cert_chain_resolver-1.2.1.tar.gz
  • Upload date:
  • Size: 12.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for cert_chain_resolver-1.2.1.tar.gz
Algorithm Hash digest
SHA256 e0aeef6650d7d7a99f4d34a3d72ab99d052d0f299b56cba73db43fc651de76d8
MD5 1a0ee8f2232db7f2cd2cfe17bd886994
BLAKE2b-256 8d3aa323c4cf675a2163ee60b34b0b77e1177ae019a08312e18daf1a3719e3fc

See more details on using hashes here.

File details

Details for the file cert_chain_resolver-1.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for cert_chain_resolver-1.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 287d961f4bab45d8ccb6d2747c67714e137b9fedd9502ced38b1101ec963fb74
MD5 3d4fa86d540ea8be672092532890fc1d
BLAKE2b-256 2d9dca7837a1b26166f977876e44832b886c706101ad70aa8a2f08fef12bd95e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page