Metadata-Version: 2.1
Name: ownca
Version: 0.0.1a1
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 OwnCA
        
        Python OwnCA allows you to handle a Certificate Authority (CA), using existent 
        keys and certificates or generate a new set of certificate for your CA.
        
        Python OwnCA also issues certificates for hosts, also the possibility to revoke
        existent certificates is possible.
        
        ## Installation
        
        pip install ownca
        
        ```pycon
        >> from ownca import CertificateAuthority
        >> 
        >> ca = CertificateAuthority(ownca_home="/etc/ssl/CA", ca="My Own CA")
        >> ca_certificate = ca.get_ca_certificate()
        >> myserver = ca.generate_host_certificate("myserver", dns_names=["myserver.com", "ssl.myserver.com"]
        >> myserver.get_key()
        >> myserver.get_certificates()
        ```
        
        
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
