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
|
|
|
|
|
|
|
Something like this should do it, using the php hash() function
|
||
|