19 declare(strict_types=1);
37 if (strtolower(
$key) ===
'cost') {
42 if (!isset(
$config[
'cost']) && static::class === self::class) {
50 protected function init(): void
64 $start = microtime(
true);
65 $encoder =
new self([
'cost' => (string) $cost]);
66 $encoder->encodePassword(
'test',
'');
67 $end = microtime(
true);
68 }
while (($end - $start) < $time_target && $cost < 32);
86 $numeric_costs = (
int) $costs;
87 if ($numeric_costs < 4 || $numeric_costs > 31) {
90 $this->costs = sprintf(
'%1$02d', $numeric_costs);
100 return password_hash($raw, PASSWORD_BCRYPT, [
107 return password_verify($raw, $encoded);
112 return password_needs_rehash($encoded, PASSWORD_BCRYPT, [
__construct(array $config=[])
getName()
Returns a unique name/id of the concrete password encoder.
encodePassword(string $raw, string $salt)
Encodes the raw password.
Class for user password exception handling in ILIAS.
isPasswordTooLong(string $password)
benchmarkCost(float $time_target=0.05)
requiresReencoding(string $encoded)
Returns whether the encoded password needs to be re-encoded.
isPasswordValid(string $encoded, string $raw, string $salt)
Checks a raw password against an encoded password.