Metadata-Version: 1.1
Name: argon2pure
Version: 1.2.3
Summary: Pure python implementation of the ARGON2 password hash
Home-page: http://github.com/bwesterb/argon2pure
Author: Bas Westerbaan
Author-email: bas@westerbaan.name
License: MIT
Description: argon2pure
        ==========
        
        Pure Python implementation of Argon2_ v1.3.
        
        You probably want to use the argon2_cffi_ or pyargon2_ bindings instead.
        
        Usage
        -----
        
        .. code:: python
        
            >>> import argon2pure
            >>> from binascii import hexlify
            >>> hexlify(argon2pure.argon2('password', 'randomsalt', time_cost=1, memory_cost=16, parallelism=2))
            '0163c5fa892819055eb07b8acb94fd2ff5273e689b34107daaaaceda648f1e1b'
        
        
        Installation
        ------------
        
        Run::
        
            pip install argon2pure
        
        TODO
        ----
        
        - Optimize.
        - Cover corner-cases in tests.
        
        .. _argon2: https://password-hashing.net/#argon2
        .. _pyargon2: https://pypi.python.org/pypi/argon2
        .. _argon2_cffi: https://pypi.python.org/pypi/argon2_cffi
        
        argon2pure Changelog
        ====================
        
        1.2.3 (2016-06-23)
        ------------------
        
        - Add use_threads flag to use threads instead of processes.  (Eli Collins)
        
        
        1.2.2 (2016-06-18)
        ------------------
        
        - Add ARGON2_VERSIONS constant.  (Eli Collins)
        
        
        1.2 (2016-06-17)
        ----------------
        
        - Support and switch the default to Argon2 v1.3
        
        
        1.1.1 (2016-06-17)
        ------------------
        
        - Fix setup.py typo.  (Fixes #1)
        
        Thanks to: Eli Collins
        
        
        1.1 (2016-02-06)
        ----------------
        
        Performance improvements.
        
        - Faster XORing of blocks.
        - Use multiple threads if possible.
        
        
        1 (2016-01-21)
        --------------
        
        - Initial release.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Topic :: Security
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
