Metadata-Version: 1.1
Name: passacre
Version: 0.13.0.1b3
Summary: better repeatable password generation
Home-page: https://github.com/habnabit/passacre
Author: Aaron Gallagher
Author-email: _@habnab.it
License: ISC
Description: .. image:: https://travis-ci.org/habnabit/passacre.png
        
        .. image:: https://coveralls.io/repos/habnabit/passacre/badge.png?branch=master
        
        
        ========
        passacre
        ========
        
        passacre = password massacre (i.e. what happens when you use the same password
        on every site)
        
        hi!!
        
        I really love supergenpass, but the implementation leaves some things to be
        desired. feverish (and possibly delirious), I hacked up a little
        proof-of-concept thing.
        
        the gist of it is that passacre uses the Keccak sponge function to repeatably
        derive a value from your master password and a site name, and then encodes that
        value using a password schema (since different sites have different (and
        terrible) password requirements).
        
        also, it's ISC-licensed!
        
        every user-facing part of this sucks right now, but it's a work-in-progress.
        
        minimal documentation available `on readthedocs
        <https://passacre.readthedocs.org/en/latest/>`_.
        
        here's how to use it for now::
        
          # for keccak generation
          pip install 'passacre[cli,keccak_generation]'
          # for skein generation (python 3 only)
          pip install 'passacre[cli,skein_generation]'
          # to be able to copy passwords, add the 'clipboard' variant too:
          pip install 'passacre[cli,clipboard,keccak_generation]'
          # then finally:
          passacre init
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Security
