1 <?php declare(strict_types=1);
4 require_once
'Services/Password/classes/class.ilBasePasswordEncoder.php';
25 foreach (
$config as $key => $value) {
26 switch (strtolower($key)) {
34 if (!isset(
$config[
'cost']) && static::class == self::class) {
45 protected function init() : void
61 $start = microtime(
true);
62 $encoder =
new self([
'cost' => (string) $cost]);
63 $encoder->encodePassword(
'test',
'');
64 $end = microtime(
true);
65 }
while (($end - $start) < $time_target && $cost < 32);
83 return parent::isSupportedByRuntime() && version_compare(phpversion(),
'5.5.0',
'>=');
100 if (!empty($costs)) {
101 $costs = (int) $costs;
102 if ($costs < 4 || $costs > 31) {
105 $this->costs = sprintf(
'%1$02d', $costs);
119 return password_hash($raw, PASSWORD_BCRYPT, [
129 return password_verify($raw, $encoded);
137 return password_needs_rehash($encoded, PASSWORD_BCRYPT, [
__construct(array $config=[])
encodePassword(string $raw, string $salt)
Class for user password exception handling in ILIAS.
isPasswordTooLong(string $password)
Checks if the password is too long.
benchmarkCost(float $time_target=0.05)
requiresReencoding(string $encoded)
isPasswordValid(string $encoded, string $raw, string $salt)