Metadata-Version: 2.1
Name: certipy
Version: 0.0.2
Summary: Utility to create and sign CAs and certificates
Home-page: https://github.com/LLNL/certipy
Author: Thomas Mendoza
Author-email: mendoza33@llnl.gov
License: BSD
Description: Certipy
        =======
        
        A simple python tool for creating certificate authorities and
        certificates on the fly.
        
        Usage
        -----
        
        Command line
        ~~~~~~~~~~~~
        
        Creating a certificate authority:
        
        Certipy defaults to writing certs and store.json into a folder called
        ``out`` in your current directory.
        
        ::
        
           $ certipy foo
           No store file at out/store.json. Creating a new one.
           KeyCertPair(name='foo', dir_name='/tmp/out/foo', key_file='/tmp/out/foo/foo.key', cert_file='/tmp/out/foo/foo.crt', ca_file='/tmp/out/foo/foo.crt')
        
        Creating and signing a key cert pair:
        
        ::
        
           $ certipy bar --ca-name foo
           KeyCertPair(name='bar', dir_name='/tmp/out/bar', key_file='/tmp/out/bar/bar.key', cert_file='/tmp/out/bar/bar.crt', ca_file='/tmp/out/foo/foo.crt')
        
        Code
        ~~~~
        
        Creating a certificate authority:
        
        ::
        
           from certipy import Certipy
        
           store = Certipy(store_dir='/tmp')
           store.create_ca('foo')
           cert_info = store.get('foo') # KeyCertPair
        
        Creating and signing a key cert pair:
        
        ::
        
           from certipy import Certipy
        
           store = Certipy(store_dir='/tmp')
           store.create_signed_pair('bar', 'foo')
           cert_info = store.get('bar') # KeyCertPair
        
        Release
        ~~~~~~~
        
        Certipy is released under BSD license. For more details see the LICENSE
        file.
        
        LLNL-CODE-754897
        
Keywords: pki ssl tls certificates
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Provides-Extra: test
Provides-Extra: dev
