我知道PHP中有MD5和SHA1散列函数,但还有其他吗?
答案 0 :(得分:2)
使用
<?php
print_r(hash_algos());
?>
这将打印系统上可用的所有可用散列算法的列表。选择一个并将其作为hash
- 函数的第一个参数提供,如下所示:
hash('whirlpool', $the_data_to_be_hashed);
答案 1 :(得分:0)
是的,它支持一系列算法,具体取决于您使用的版本。查看the documentation以获取完整列表,但5.3版本支持整个sha2系列,Maturemd,漩涡,老虎等。