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

Uploaded Source

Built Distribution

cert_chain_resolver-1.1.0-py3-none-any.whl (13.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: cert_chain_resolver-1.1.0.tar.gz
  • Upload date:
  • Size: 10.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.2

File hashes

Hashes for cert_chain_resolver-1.1.0.tar.gz
Algorithm Hash digest
SHA256 41ea3535008e9a256e01050edc96be8a2d54020dd55a4309b0b4d64fe1ec6552
MD5 e5d05a9c649532131ed7cfe4c7297ca9
BLAKE2b-256 fdd1ac528c8034a45fbbaa43e3ea0f299b9f57dfcd36a3ac38b8b4cbc0033484

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cert_chain_resolver-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 02f36ee18a51f2d8f7e2cfbe3728aee1db9ab2f103c9c1371d6618cc946a1c98
MD5 b7d8dc41ebdbcb6669af591e15b17013
BLAKE2b-256 c51aac37044b791dd7ce5ec20a39069bfb85276ab44951720aed647d2e7b07f7

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