Metadata-Version: 2.1
Name: ownca
Version: 0.0.1a4
Summary: Python Own Certificate Authority
Home-page: https://github.com/kairoaraujo/ownca
Author: Kairo de Araujo
Author-email: kairo@dearaujo.nl
License: Apache 2.0
Project-URL: Source, https://github.com/kairoaraujo/ownca
Description: Python Own Certificate Authority (ownca)
        ========================================
        
        ownca make easy to handle a Certificate Authority (CA) and manage certificates
        for hosts or clients.
        
        A high level usage is
        
        ```pycon
        >>> from ownca import CertificateAuthority
        >>> ca = CertificateAuthority(ca_storage='/opt/CA', common_name='Corp CA')
        >>> mycorp = ca.issue_certificate('mycorp', dns_names=['mycorp.com', 'tls.mycorp.com')
        
        ```
        
        Basically in this three steps we did:
         1. Imported the ownca Certificate Authority
         2. Created a new CA name of *Corp CA* that uses ```/opt/CA``` as storage for CA
          certificates, keys and files.
         3. We created signed certificates by *Corp CA* for server *mycorp*, the server
         files are also stored in ```/opt/CA/certs/mycorp```.
        
        More detailed usage can be found in [http://ownca.readthedocs.org](http://ownca.readthedocs.org,)
        
        
        Installation
        ============
        
        ```shell
        pip install ownca
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6
Description-Content-Type: text/markdown
