Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Lots of info here: stackoverflow.com/questions/1183161/… – Justin Ethier Apr 3 '10 at 17:50

4 Answers

up vote 16 down vote accepted

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 <type of hash>$<salt>$<hash> in a single char field. You can also store the three parts in separate fields.

The function to set the password:

def set_password(self, raw_password):
    import random
    algo = 'sha1'
    salt = get_hexdigest(algo, str(random.random()), str(random.random()))[:5]
    hsh = get_hexdigest(algo, salt, raw_password)
    self.password = '%s$%s$%s' % (algo, salt, hsh)

The get_hexdigest is just a thin wrapper around some hashing algorithms. You can use hashlib for that. Something like hashlib.sha1('%s%s' % (salt, hash)).hexdigest()

And the function to check the password:

def check_password(raw_password, enc_password):
    """
    Returns a boolean of whether the raw_password was correct. Handles
    encryption formats behind the scenes.
    """
    algo, salt, hsh = enc_password.split('$')
    return hsh == get_hexdigest(algo, salt, raw_password)
share|improve this answer
Do you have a link to the appropriate code file? – Justin Ethier Apr 3 '10 at 17:51
This was really helpful. Thanks so much. – ensnare Apr 3 '10 at 17:57
@justin ethier: there ya go. @ensnare: feel free to mark it as accepted ;-) – rz. Apr 3 '10 at 18:01
Could be better - you don't use a constant time string compare (not so important here, but if the user does the hashing, for example secure cookies, then you must use constant time string compare), and sha1 can be brute forced for predictable (i.e. most people's) passwords. – wisty Jun 29 '11 at 14:24

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

share|improve this answer

If you have enough control over both endpoints of the application, the absolute best way is using SRP.

share|improve this answer

Here is a simplier way (taken from effbot)

import crypt

import random, string

def getsalt(chars = string.letters + string.digits):
    # generate a random 2-character 'salt'
    return random.choice(chars) + random.choice(chars)

for generate the password :

crypt.crypt("password", getsalt())
share|improve this answer
crypt have problems to encrypt password of more than 8 chars I think – llazzaro Jan 11 at 21:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.