1 <?php declare(strict_types=1);
17 public function encodePassword(
string $raw,
string $salt) : string;
26 public function isPasswordValid(
string $encoded,
string $raw,
string $salt) : bool;
32 public function getName() : string;
isPasswordValid(string $encoded, string $raw, string $salt)
Checks a raw password against an encoded password.
requiresSalt()
Returns whether or not the encoder requires a salt.
encodePassword(string $raw, string $salt)
Encodes the raw password.
isSupportedByRuntime()
Returns whether or not the encoder is supported by the runtime (PHP, HHVM, ...)
requiresReencoding(string $encoded)
Returns whether or not the a encoded password needs to be re-encoded.
getName()
Returns a unique name/id of the concrete password encoder.