Python implementation of https://github.com/defuse/password-hashing (v1.0)
Project description
password-hashing-python
Python implementation of https://github.com/defuse/password-hashing (v1.0)
Supports both Python >=v2.7.9 and >=3.4.
Please note, this code has not been scrutinized or peer-reviewed at all - though I'm interested, if anyone wants to look it over.
It is a naive attempt to re-implement PasswordHash.php.
Installation
pip install password-hashing-python
Usage
Creating a hash-string
>>> import password_hashing
>>> _hash = password_hashing.create_hash('your_password')
>>> print _hash
b'sha1:64000:18:B6oWbvtHvu8qCgoE75wxmvpidRnGzGFt:R1gkPOuVjqIoTulWP1TABS0H'
>>> # snip: save `_hash` to a DB
Validating the password
>>> # snip: retrieve `_hash` from DB
>>> import password_hashing
>>> password_hashing.validate_password('your_password', _hash)
True
>>> password_hashing.validate_password('wrong_password', _hash)
False
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file password_hashing_python-0.3.0-py2.py3-none-any.whl.
File metadata
- Download URL: password_hashing_python-0.3.0-py2.py3-none-any.whl
- Upload date:
- Size: 3.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
540498a62c49b55c140535ffa0fbce6293777af01dbd7cec6c45bc1afd7e3379
|
|
| MD5 |
ba5d7a9dca0ba8cfce34543a39f6053b
|
|
| BLAKE2b-256 |
05468248d0684afc7139be570fdcddca19ef8cbc77acd1f1cc9da0458f188a72
|