Actions
Todo #10298
closedUse SHA-512 for user password hashes
Start date:
02/27/2020
Due date:
% Done:
100%
Estimated time:
Plus Target Version:
22.01
Release Notes:
Description
function local_user_set_password() from auth.inc,
for now uses password_hash($password, PASSWORD_BCRYPT) function to create user password hash
from https://www.php.net/manual/en/function.password-hash.php:
PASSWORD_BCRYPT - Use the CRYPT_BLOWFISH algorithm to create the hash. This will produce a standard crypt() compatible hash using the "$2y$" identifier. The result will always be a 60 character string, or FALSE on failure.
Is it possible to use CNSA-compatible hashing for this operation?
From https://apps.nsa.gov/iaarchive/programs/iad-initiatives/cnsa-suite.cfm:
Use SHA-384 to protect up to TOP SECRET. ( http://csrc.nist.gov/publications/fips/fips180-4/fips-180-4.pdf )
Using hash() ?
https://stackoverflow.com/questions/6431918/php-sha256-and-salt-wont-work
Related issues
Actions