ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilMd5PasswordEncoder.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
31 {
32  public function encodePassword(string $raw, string $salt): string
33  {
34  if ($this->isPasswordTooLong($raw)) {
35  throw new ilPasswordException('Invalid password.');
36  }
37 
38  return md5($raw);
39  }
40 
41  public function isPasswordValid(string $encoded, string $raw, string $salt): bool
42  {
43  return !$this->isPasswordTooLong($raw) && $this->comparePasswords($encoded, $this->encodePassword($raw, $salt));
44  }
45 
46  public function getName(): string
47  {
48  return 'md5';
49  }
50 }
comparePasswords(string $knownString, string $userString)
Compares two passwords.
Class for user password exception handling in ILIAS.
encodePassword(string $raw, string $salt)
Encodes the raw password.
getName()
Returns a unique name/id of the concrete password encoder.
isPasswordValid(string $encoded, string $raw, string $salt)
Checks a raw password against an encoded password.