ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilMd5PasswordEncoder.php
Go to the documentation of this file.
1 <?php declare(strict_types=1);
2 /* Copyright (c) 1998-2014 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 require_once 'Services/Password/classes/class.ilBasePasswordEncoder.php';
5 
16 {
21  public function encodePassword(string $raw, string $salt) : string
22  {
23  if ($this->isPasswordTooLong($raw)) {
24  throw new ilPasswordException('Invalid password.');
25  }
26 
27  return md5($raw);
28  }
29 
34  public function isPasswordValid(string $encoded, string $raw, string $salt) : bool
35  {
36  return !$this->isPasswordTooLong($raw) && $this->comparePasswords($encoded, $this->encodePassword($raw, $salt));
37  }
38 
42  public function getName() : string
43  {
44  return 'md5';
45  }
46 }
comparePasswords(string $knownString, string $userString)
Compares two passwords.
Class for user password exception handling in ILIAS.
isPasswordTooLong(string $password)
Checks if the password is too long.
encodePassword(string $raw, string $salt)
isPasswordValid(string $encoded, string $raw, string $salt)