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.
pako
2010-02-25 22:05:22
Thanks a lot. :)
Brent
2010-02-27 03:50:42