19 declare(strict_types=1);
51 if (!empty($config)) {
52 foreach ($config as $key => $value) {
53 switch (strtolower($key)) {
62 case 'password_encoder':
66 case 'encoder_factory':
76 '"password_encoder" must be set in %s.',
77 print_r($config,
true)
83 '"encoder_factory" must be instance of LocalUserPasswordEncoderFactory and set in %s.',
84 print_r($config,
true)
98 if (self::$instance instanceof
self) {
99 return self::$instance;
107 'default_password_encoder' =>
'bcryptphp',
109 'memory_cost' => 19_456,
110 'ignore_security_flaw' =>
true,
115 'password_encoder' =>
'argon2id',
116 'settings' => $DIC->isDependencyAvailable(
'settings') ? $DIC->settings() :
null,
117 'db' => $DIC->database(),
121 self::$instance = $password_manager;
123 return self::$instance;
160 if ($encoder->requiresSalt()) {
196 if ($encoder->requiresReencoding($user->
getPasswd())) {
208 $defaultAuthMode = $this->
settings->get(
'auth_mode');
209 $defaultAuthModeCondition =
'';
211 $defaultAuthModeCondition =
' OR auth_mode = ' . $this->db->quote(
'default',
'text');
214 $this->db->manipulateF(
215 "UPDATE usr_data SET passwd_policy_reset = %s WHERE (auth_mode = %s $defaultAuthModeCondition)",
232 return ilAuthUtils::isPasswordModificationHidden()
static get(string $a_var)
verifyPassword(ilObjUser $user, string $raw)
resetPassword(string $raw, string $raw_retype)
Resets the user password.
allowPasswordChange(ilObjUser $user)
isPasswordChangeDemanded()
encodePassword(ilObjUser $user, string $raw)
setPasswordSalt(?string $password_salt)
getAuthMode(bool $a_auth_key=false)
setPasswd(string $a_str, string $a_type=ilObjUser::PASSWD_PLAIN)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setSettings(?ilSetting $settings)
setEncoderName(string $encoderName)
static getInstance()
Singleton method to reduce footprint (included files, created instances)
static getBytes(int $length)
Generate random bytes using OpenSSL or Mcrypt and mt_rand() as fallback.
static getDataDir()
get data directory (outside webspace)
resetLastPasswordChangeForLocalUsers()
LocalUserPasswordEncoderFactory $encoderFactory
setPasswordEncodingType(?string $password_encryption_type)
__construct(array $config=[])
Please use the singleton method for instance creation The constructor is still public because of the ...
setEncoderFactory(LocalUserPasswordEncoderFactory $encoderFactory)
static isPasswordModificationEnabled($a_authmode)
Check if password modification is enabled.
isEncodingTypeSupported(string $name)
getPasswordEncodingType()