PlaintextPasswordEncoder
class PlaintextPasswordEncoder extends BasePasswordEncoder
PlaintextPasswordEncoder does not do any encoding.
Constants
MAX_PASSWORD_LENGTH |
|
Methods
__construct(bool $ignorePasswordCase = false)
Constructor.
string
encodePassword(string $raw, string $salt)
Encodes the raw password.
bool
isPasswordValid(string $encoded, string $raw, string $salt)
Checks a raw password against an encoded password.
Details
at line line 30
__construct(bool $ignorePasswordCase = false)
Constructor.
at line line 38
string
encodePassword(string $raw, string $salt)
Encodes the raw password.
at line line 50
bool
isPasswordValid(string $encoded, string $raw, string $salt)
Checks a raw password against an encoded password.