Is the PHP WHIRLPOOL hash function supported by default? I think so, but I wanted to ask, to be sure.
Yes, hash() in PHP should support Whirlpool by default. Try calling:
hash()
print_r(hash_algos());
to see a list of supported hashing methods.
http://www.php.net/manual/en/function.hash-algos.php
Yes. And your code might look something like this:
$myHash = hash( 'whirlpool', $salt . $password );
For more information, see this great article: PHP Password Protection
Source: https://habr.com/ru/post/1302423/More articles:Clear redirect rules / rewrite rules through SEO? - redirectOversizing lists in python - pythonwhy is it bad to have 200 OK header status on 404 error page? - httpHow to add new form fields using jQuery and $ form helper? - jqueryError message: Unable to convert type 'string' to 'string []' - c #Use Greek with JSON - jsonInheriting a list of template classes when a list of template arguments is provided - c ++Problem with ant file - javasvn talks about conflict, but it does merge (TortoiseSVN) - version-controlFunctional approach for parsing hierarchical CSV - functional-programmingAll Articles