ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
interface.ilPasswordEncoder.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 {
34  public function encodePassword(string $raw, string $salt): string;
35 
43  public function isPasswordValid(string $encoded, string $raw, string $salt): bool;
44 
48  public function getName(): string;
49 
53  public function requiresSalt(): bool;
54 
58  public function requiresReencoding(string $encoded): bool;
59 
63  public function isSupportedByRuntime(): bool;
64 }
isPasswordValid(string $encoded, string $raw, string $salt)
Checks a raw password against an encoded password.
requiresSalt()
Returns whether the encoder requires a salt.
encodePassword(string $raw, string $salt)
Encodes the raw password.
isSupportedByRuntime()
Returns whether the encoder is supported by the runtime (PHP, HHVM, ...)
requiresReencoding(string $encoded)
Returns whether the encoded password needs to be re-encoded.
getName()
Returns a unique name/id of the concrete password encoder.