Is there a framework or function that allows me to use SHA3-512? I don't want a extension like Strawbrary
相关问题
- Views base64 encoded blob in HTML with PHP
- Laravel Option Select - Default Issue
- PHP Recursively File Folder Scan Sorted by Modific
- Can php detect if javascript is on or not?
- Using similar_text and strpos together
For those coming to this later (after this post) PHP 7.1.0 has support for SHA3-512.
http://php.net/manual/en/function.hash-algos.php
PHP 5.3.2 added SHA-256 and SHA-512 to the crypt() function. This might be somewhat similar to what your looking for
http://us3.php.net/crypt
Yes sure simply you can use hash function in php
It's possible.
Maybe too late, but I've worked on a
pure-PHP
implementation here:LGPL 3+
PHP 5.2+
(considerably slower on olderPHP
)C
.It is a simple and fast implementation in
PHP
(which means far slower than C). Since this is purely "CPU-bound",PHP 7.0
runs 4x faster thanPHP 5.6
. (55kB/s here)Fine with a small input. Correctly handles a huge input, just hogs
CPU
for minutes.I hope it helps.