views:

63

answers:

1

I was just wondering if PHP's hash function supported WHIRLPOOL by default. I believe it is but i wanted to ask to be sure.

+3  A: 

Yes, hash() in PHP should support Whirlpool by default. Try calling:

print_r(hash_algos());

to see the list of supported hashing methods.

http://www.php.net/manual/en/function.hash-algos.php

pako
Thanks a lot. :)
Brent