Metadata-Version: 1.1
Name: simple-passgen
Version: 0.1.0
Summary: Generate secure random character sequences, not inspired by XKCD
Home-page: https://github.com/JMurph2015/simple-passgen
Author: Joseph Murphy
Author-email: air.jmurph+simple-passgen@gmail.com
License: MIT
Description: # Simple-Passgen
        : *A very simple script to generate cryptographically random passwords*
        Simple-Passgen is a script that uses `os.urandom()` to generate crypotographically suitable 
        random characters from the set of characters typable on a standard keyboard (a-z, A-Z, 0-9, and 
        punctuation).  For a complete listing refer to an ASCII or Unicode table, as this implementation 
        uses precisely ASCII codes 33-126. This generates passwords with 6.554 bits of entropy per 
        character.  Some basic statistics are given about the password on each generation depending on 
        the length settings chosen.
        ## Usage
        ```
        shell passgen [phrase length]
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Environment :: Console
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
