3 declare(strict_types=1);
50 if (!empty($config)) {
51 foreach ($config as
$key => $value) {
52 switch (strtolower(
$key)) {
59 case 'password_encoder':
62 case 'encoder_factory':
71 '"password_encoder" must be set in %s.',
72 json_encode($config, JSON_THROW_ON_ERROR)
78 '"encoder_factory" must be instance of ilUserPasswordEncoderFactory and set in %s.',
79 json_encode($config, JSON_THROW_ON_ERROR)
94 if (self::$instance instanceof
self) {
95 return self::$instance;
102 'default_password_encoder' =>
'bcryptphp',
103 'ignore_security_flaw' =>
true,
107 'password_encoder' =>
'bcryptphp',
108 'settings' => $DIC->isDependencyAvailable(
'settings') ? $DIC->settings() : null,
109 'db' => $DIC->database(),
113 self::$instance = $password_manager;
114 return self::$instance;
151 if ($encoder->requiresSalt()) {
175 if ($encoder->requiresReencoding($user->
getPasswd())) {
187 $defaultAuthMode = $this->
settings->get(
'auth_mode');
188 $defaultAuthModeCondition =
'';
190 $defaultAuthModeCondition =
' OR auth_mode = ' . $this->db->quote(
'default',
'text');
193 $this->db->manipulateF(
194 "UPDATE usr_data SET passwd_policy_reset = %s WHERE (auth_mode = %s $defaultAuthModeCondition)",
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
resetPassword(string $raw, string $raw_retype)
Resets the user password.
encodePassword(ilObjUser $user, string $raw)
__construct(array $config=[])
Please use the singleton method for instance creation The constructor is still public because of the ...
isEncodingTypeSupported(string $name)
setPasswordSalt(?string $password_salt)
ilUserPasswordEncoderFactory $encoderFactory
setPasswd(string $a_str, string $a_type=ilObjUser::PASSWD_PLAIN)
setSettings(?ilSetting $settings)
static getBytes(int $length)
Generate random bytes using OpenSSL or Mcrypt and mt_rand() as fallback.
setEncoderFactory(ilUserPasswordEncoderFactory $encoderFactory)
static getDataDir()
get data directory (outside webspace)
setPasswordEncodingType(?string $password_encryption_type)
verifyPassword(ilObjUser $user, string $raw)
resetLastPasswordChangeForLocalUsers()
getPasswordEncodingType()
static getInstance()
Singleton method to reduce footprint (included files, created instances)
setEncoderName(string $encoderName)