Metadata-Version: 1.2
Name: passthesalt
Version: 2.1.0
Summary: Deterministic password generation and password storage.
Home-page: https://github.com/rossmacarthur/passthesalt
Author: Ross MacArthur
Author-email: macarthur.ross@gmail.com
License: MIT
Download-URL: https://github.com/rossmacarthur/passthesalt/archive/2.1.0.tar.gz
Description: Pass the Salt
        =============
        
        Deterministic password generation and password storage.
        
        Install it using
        
        ::
        
            pip install passthesalt
        
        and get started by running 
        
        ::
            
            pts add
        
        
        How does it work?
        -----------------
        
        Passwords are generated on the fly using the same secure algorithm which uses a *master password* and a *description* of the password. Only the description of the password is stored.
        
        If it is really needed it is also possible to AES (CFB) encrypt passwords with the master password.
        
        What is the generation algorithm?
        ---------------------------------
        
        PBKDF2 and 2048 iterations of HMAC-SHA-256 applied to (*full name* + *master password*) as the key and the *description* as the salt.
        
Keywords: password manager pbkdf2
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
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
Requires-Python: >=2.7
