is there any way I can reproduce this ruby function:
def Password.hash(password,salt) Digest::SHA512.hexdigest("#{password}:#{salt}") end
In php.
Cheers
Something like this should do it, using the php hash() function
function passwordhash($password, $salt) { return hash('sha512', "{$password}:{$salt}"); }
This is a collaboratively edited question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
about » faq »
tagged
asked
2 years ago
viewed
797 times
active