1 <?php declare(strict_types=1);
24 foreach (
$config as $key => $value) {
25 switch (strtolower($key)) {
26 case 'password_encoder':
30 case 'encoder_factory':
38 throw new \Exception(sprintf(
'"password_encoder" must be set in %s.', json_encode(
$config)));
42 throw new \ilUserException(sprintf(
43 '"encoder_factory" must be instance of \ilSetupPasswordEncoderFactory and set in %s.',
91 return $encoder->encodePassword($raw,
'');
103 public function verifyPassword(
string $encoded,
string $raw, callable $passwordReHashCallback) : bool
105 $currentEncoder = $this->
getEncoderFactory()->getFirstEncoderForEncodedPasswordAndMatchers(
108 'md5' =>
function ($encoded) {
109 return is_string($encoded) && strlen($encoded) === 32;
111 'bcryptphp' =>
function ($encoded) {
112 return is_string($encoded) && substr($encoded, 0, 4) ===
'$2y$' && strlen($encoded) === 60;
118 if ($currentEncoder->isPasswordValid($encoded, $raw,
'')) {
119 $passwordReHashCallback($raw);
124 if ($currentEncoder->isPasswordValid($encoded, $raw,
'')) {
125 if ($currentEncoder->requiresReencoding($encoded)) {
126 $passwordReHashCallback($raw);
setEncoderName(string $encoderName)
__construct(array $config=[])
ilSetupPasswordManager constructor.
setEncoderFactory(\ilSetupPasswordEncoderFactory $encoderFactory)
encodePassword(string $raw)
Encodes the raw password based on the relevant encoding strategy.
Class ilSetupPasswordManager.
verifyPassword(string $encoded, string $raw, callable $passwordReHashCallback)
Verifies if the passed raw password matches the encoded one, based on the current encoding strategy...
Class ilSetupPasswordManager.