Metadata-Version: 2.1
Name: cert-chain-resolver
Version: 0.2.1
Summary: Resolve certificate chain by giving a cert as input
Home-page: https://github.com/rkoopmans/python-certificate-chain-resolver
Author: Remco Koopmans
Author-email: me@remcokoopmans.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 2.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: cryptography (>=2.5)

# Resolve certificate chains

Still in development

## Dependencies

* cryptography
* pyOpenSSL

## Install

[Pypi](https://pypi.org/project/cert-chain-resolver/)


    $ pip install cert-chain-resolver


## Usage

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


## Development

bootstrap

    $ make

## Todo

* support cross signed certificates, currently it only processes the first in a bundle
* Verbose mode
* More CLI flags
* Unit tests
* Pretty print detailed output


