Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: PHP 的 SHA-512 库
我看到 has() 只能达到 sha1。如何使用 PHP 正确实现 SHA512,使用 codeignitor。我需要一个外部库还是对此有内置支持?如果外部有任何关于开放/免费的建议?
谢谢。
请参阅http://us2.php.net/manual/en/function.hash-algos.php:
print_r(hash_algos());
那应该给你SHA512。