Metadata-Version: 2.1
Name: safepass
Version: 1.0.2
Summary: Check passwords against https://haveibeenpwned.com/API/v2#PwnedPasswords
Home-page: https://github.com/cmccandless/safepass
Author: Corey McCandless
Author-email: crm1994@gmail.com
License: UNKNOWN
Description: # safepass
        Check passwords against https://haveibeenpwned.com/API/v2#PwnedPasswords
        
        ## Usage
        
        ### For humans
        
        ```bash
        $ safepass
        Password: <enter pwned password (masked)>
        NOT SAFE!
        $ echo $?
        1
        $ safepass
        Password: <enter not-pwned password (masked)>
        SAFE!
        $ echo $?
        0
        ```
        
        ### For scripting
        
        *Note: scripting mode intended for situations where command history is not saved. Please use above interactive mode if checking directly in command line.*
        
        `$ safepass $PASSWORD`
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
