is there any way I can reproduce this ruby function:

def Password.hash(password,salt)
    Digest::SHA512.hexdigest("#{password}:#{salt}")
end

In php.

Cheers

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

Something like this should do it, using the php hash() function

function passwordhash($password, $salt)
{
   return hash('sha512', "{$password}:{$salt}");
}
link|improve this answer
Cheers Paul Thats worked a treat, nice one. – user149586 Nov 2 '09 at 10:31
feedback

Your Answer

 
or
required, but never shown