Looking to store usernames and passwords in a database, and am wondering what the safest way to do so is. I know I have to use a salt somewhere, but am not sure how to generate it securely or how to apply it to encrypt the password. Some sample Python code would be greatly appreciated. Thanks.
|
|
Store the password+salt as a hash and the salt. Take a look at how django does it: basic docs and source.
In the db they store The function to set the password:
The get_hexdigest is just a thin wrapper around some hashing algorithms. You can use hashlib for that. Something like And the function to check the password:
|
|||||||||
|
|
I think it is best to use a package dedicated to hashing passwords for this like passlib: http://packages.python.org/passlib/ for reasons as I explained here: http://stackoverflow.com/a/10948614/893857 |
|||
|
|
|
If you have enough control over both endpoints of the application, the absolute best way is using SRP. |
|||
|
|
|
Here is a simplier way (taken from effbot)
for generate the password :
|
|||
|
|