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

This code is supposed to hash a password with a salt. The salt and hashed password are being saved in the database. The password itself is not.

Given the sensitive nature of the operation, I wanted to make sure everything was kosher.

Note: I use the url safe version of b64encode out of habit.

import hashlib
import base64
import uuid

password = 'test_password'
salt     = base64.urlsafe_b64encode(uuid.uuid4().bytes)


t_sha = hashlib.sha512()
t_sha.update(password+salt)
hashed_password =  base64.urlsafe_b64encode(t_sha.digest())
share|improve this question
Why are you b64 encoding the salt? It would be simpler just to use the salt directly and then b64 encode both together t_sha.digest() + salt. You can split the salt out again later when you've decoded the salted hash password as you know the decoded hashed password is exactly 32 bytes. – Duncan Mar 7 '12 at 9:23
@Duncan - I base64 encoded the salt so I could do strong operations on it without having to worry about weird issues. Will the "bytes" version work as a string? If that is the case, then I don't need to base64 encode t_sha.digest() either. I probably wouldn't save the hashed password and the salt together just because that seems a little more complicated and a little less readable. – Chris Dutrow Mar 7 '12 at 14:50
If you're using Python 2.x then the bytes object will work perfectly well as a string. Python doesn't put any restrictions on what you can have in a string. However the same might not apply if you pass the string to any external code such as a database. Python 3.x distinguishes byte types and strings so in that case you wouldn't want to use string operations on the salt. – Duncan Mar 7 '12 at 15:19
1  
I can't tell you how to do it in python, but plain SHA-512 is a bad choice. Use a slow hash such as PBKDF2, bcrypt or scrypt. – CodesInChaos May 11 '12 at 21:26
I'm learning about to password hashing and new to programming and Python. I have few doubts. I have noted that uuid.uuid4().bytes generates a unique value each time this will be added to password to create the hash. But how we are going to check or match the password when we have to authorize the user. Suppose the user enters his username and password and we have to create the hash of the entered password then match the generated hash with one in database. But since uuid.uuid4() used this will generate a new salt each and therefore the hash generated will be different too right? – Nick Dec 20 '12 at 10:08

3 Answers

up vote 8 down vote accepted

Looks fine by me. However, I'm pretty sure you don't actually need base64. You could just do this:

import hashlib, uuid
salt = uuid.uuid4().hex
hashed_password = hashlib.sha512(password + salt).hexdigest()

If it doesn't create difficulties, you can get slightly more efficient storage in your database by storing the salt and hashed password as raw bytes rather than hex strings. To do so, replace hex with bytes and hexdigest with digest.

share|improve this answer
Yes, hex would work just fine. I prefer base64 because the strings are a little shorter. Its more efficient to pass around and do operations on shorter strings. – Chris Dutrow Mar 7 '12 at 3:41

The smart thing is not to write the crypto yourself but to use something like passlib: http://code.google.com/p/passlib/ .

It is easy to mess up writing your crypto code in a secure way. The nasty thing is that with non crypto code you often immediately notice it when it is not working since your program crashes. While with crypto code you often only find out after it is to late and your data has been compromised. Therefor I think it is better to use a package written by someone else who is knowledgable about the subject and which is based on battle tested protocols.

Also passlib has some nice features which make it easy to use and also easy to upgrade to a newer password hashing protocol if an old protocol turns out to be broken.

Also just a single round of sha512 is more vulnerable to dictionary attacks. sha512 is designed to be fast and this is actually a bad thing when trying to store passwords securely. Other people have thought long and hard about all this sort issues so you better take advantage of this.

share|improve this answer
1  
I suppose the advice of using crypo libraries is good, but the OP is already using hashlib, a crypto library which is also in the Python standard library (unlike passlib). I would continue to use hashlib if I were in the OPs situation. – dghubble Oct 8 '12 at 1:38

For this to work in Python 3 you'll need to UTF-8 encode for example:

hashed_password = hashlib.sha512(password.encode('utf-8') + salt.encode('utf-8')).hexdigest()

Otherwise you'll get: Traceback (most recent call last): File "", line 1, in hashed_password = hashlib.sha512(password + salt).hexdigest() TypeError: Unicode-objects must be encoded before hashing

share|improve this answer

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.