blob: d26a94abb0791a677a6b3a112c50b31f8aae36f8 (
plain) (
tree)
|
|
<?php
class Crypto
{
/**
* Hash given string using crypt's $6$,
* which translates to ~130 bit salt
* and 5000 rounds of hashing with SHA-512.
*/
public static function hash6(string $password): string
{
$salt = substr(str_replace('+', '.',
base64_encode(Util::randomBytes(16))), 0, 16);
$hash = crypt($password, '$6$' . $salt);
if ($hash === null || strlen($hash) < 60) {
ErrorHandler::traceError('Error hashing password using SHA-512');
}
return $hash;
}
/**
* Check if the given password matches the given crypt hash.
* Useful for checking a hashed password.
*/
public static function verify(string $password, string $hash): bool
{
return crypt($password, $hash) === $hash;
}
}
|