vote up 1 vote down star

Hi there, is there any way I can reproduce this ruby function:

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

In php.

Cheers

flag

1 Answer

vote up 1 vote down check

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

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

Your Answer

Get an OpenID
or

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