A password attribute that stores hashes
Project description
The password module offers you a single utility class called Password. This class is meant to be used as an attribute of any other object class on which you want to store passwords in hashed mode. This module is framework-agnostic so it is up to you to provide persistence (you need to store ‘hash’ and ‘salt’ set on the object).
Example usage
Create your class:
>>> import password >>> class User(): ... password = password.Password(method='sha1', hash_encoding='base64') # You also probably want to create 'hash' and 'salt' attributes # With your chosen persistence mechanism
Set a password on the object:
>>> user = User() >>> user.password = 'abcdef'
You cannot read the password back:
>>> user.password <password._HashedPassword object at 0x7fdba1fef990>
but you can see, that hash and salt are set:
>>> user.hash 'L1Fz6aoIdIlZzoxsXPWxJq8zNTQ=' >>> user.salt 'VIboVvtr'
You can also check for equality with a string:
>>> user.password == 'abcdef' True >>> user.password == '12345' 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
password-0.2.zip
(3.8 kB
view hashes)
password-0.2.tar.bz2
(2.5 kB
view hashes)