Metadata-Version: 1.1
Name: calib
Version: 0.1.1
Summary: Certificate Authority Lib & Tools
Home-page: https://github.com/lipixun/pyca
Author: lipixun
Author-email: lipixun@outlook.com
License: LICENSE
Description: # pyca
        
        A python implemented certificate authority lib &amp; tools based on openssl
        
        ## Features
        
        * Verify certificate
        * Generate root CA
        * Sign server certificate
        * Sign client certificate
        
        ## Future features
        
        * Maintain certificate chain
        * Generate CRL (Certificate revocation lists)
        * Generate OCSP (Online Certificate Status Protocol)
        
        ## Simple usage
        
        Before generating / signing anything, you have to init the key / certificate database.
        
        This is done by running command `python -m calib --base [The database path] init`
        
        Please take care that any files or dirs will be removed in the database path. If the `--base` argument is not given, the current working directory will be used.
        
        After initialized the database, you have to generate a root certificate by command `python -m calib --base [The database path] createRootCert`
        
        Please use `python -m calib --help` for more usage info.
        
        
Keywords: python,ca,certificate,openssl
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Intended Audience :: Developers
Classifier: Operating System :: POSIX
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
