I am working on a website for a game. The accounts are created via the php based website, and the game login server is being prototyped in Python, and will be finalized in C. The problem I am having is that when I hash something in PHP, I am unable to reproduce the same result with the same starting data and salt in Python. I looked through the algorithm in PHP here http://www.akkadia.org/drepper/SHA-crypt.txt and compared it to the way I was doing it and noticed that PHP cuts off the null byte at the end. Although, other than that I havent had much luck.

Python:

def HashPassword(Salt,Password,Rounds=5000):
    passhash=hashlib.sha512(Password+Salt).digest()[:-1]
    for i in xrange(2,Rounds):
        passhash=hashlib.sha512(passhash+Salt).digest()[:-1]
    return passhash

PHP:

function HashPW($password, $salt = "")
{
    if(strlen($salt) == 0) $salt = RandChar(16);
    return crypt($password, '$6$rounds=5000$' . $salt . '$');
}
link|improve this question

so you're hashing hashes? BTW, hmac is safer than hash – JBernardo May 17 '11 at 4:31
This might be a result of the crypt function. Rather use hash or mhash(MHASH_SHA512, $pw) and do the looping manually. – mario May 17 '11 at 4:35
another thing. Why xrange(2, Rounds) instead of xrange(Rounds - 1)? There's one round missing, i guess – JBernardo May 17 '11 at 4:35
@JBernardo: HMAC is for authentication. Key stretching doesn't need to withstand the same kind of attacks, so repeated hashes are fine. – Dietrich Epp May 17 '11 at 4:37
feedback

2 Answers

up vote 1 down vote accepted

Here is some simpler Python code for you.

import crypt
def hashPassword(salt, password, rounds=5000):
    return crypt.crypt(password, '$6$rounds={:d}${}$'.format(rounds, salt))
link|improve this answer
Python 2.6 please? – Eric Johnson May 18 '11 at 3:48
Just change the format syntax to % syntax. Something like '$6$rounds=%d$%s$' % (rounds, salt). Or upgrade to 2.7 or newer. – Dietrich Epp May 18 '11 at 3:51
nvm its... def HashPassword(Salt,Password,Rounds=5000): return crypt.crypt(Password,'$6$rounds='+str(Rounds)+'$'+Salt+'$') – Eric Johnson May 18 '11 at 4:10
1  
That's somewhat unidiomatic Python -- I recommend using format strings instead, other Python programmers will like you for it. – Dietrich Epp May 18 '11 at 4:13
My background before python was mostly VB stuff, you would see that most VB dev's prefer concatenation opposed to format strings. However, it is unpopular for a reason, I suppose. Either is fine to me, and I see your point. – Eric Johnson Aug 29 '11 at 7:17
feedback

String in python doesn't include a null byte at the end.

And range(2,5000) will only loop 4998 times.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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