|
MediaWiki REL1_39
|
Factory class for creating and checking Password objects. More...
Public Member Functions | |
| __construct (array $config=[], string $default='') | |
| Most of the time you'll want to use MediaWikiServices::getInstance()->getPasswordFactory instead. | |
| getDefaultType () | |
| Get the default password type. | |
| getTypes () | |
| Get the list of types of passwords. | |
| init (Config $config) | |
| needsUpdate (Password $password) | |
| Determine whether a password object needs updating. | |
| newFromCiphertext (?string $hash) | |
| Create a new Hash object from an existing string hash. | |
| newFromPlaintext (?string $password, Password $existing=null) | |
| Create a new Hash object from a plaintext password. | |
| newFromType (string $type) | |
| Make a new default password of the given type. | |
| register (string $type, array $config) | |
| Register a new type of password hash. | |
| setDefaultType (string $type) | |
| Set the default password type. | |
Static Public Member Functions | |
| static | generateRandomPasswordString (int $minLength=10) |
| Generate a random string suitable for a password. | |
| static | newInvalidPassword () |
| Create an InvalidPassword. | |
Factory class for creating and checking Password objects.
Definition at line 32 of file PasswordFactory.php.
| PasswordFactory::__construct | ( | array | $config = [], |
| string | $default = '' ) |
Most of the time you'll want to use MediaWikiServices::getInstance()->getPasswordFactory instead.
| array | $config | Mapping of password type => config |
| string | $default | Default password type |
Definition at line 62 of file PasswordFactory.php.
References $type, and setDefaultType().
|
static |
Generate a random string suitable for a password.
| int | $minLength | Minimum length of password to generate |
Definition at line 230 of file PasswordFactory.php.
| PasswordFactory::getDefaultType | ( | ) |
| PasswordFactory::getTypes | ( | ) |
Get the list of types of passwords.
Definition at line 130 of file PasswordFactory.php.
| PasswordFactory::init | ( | Config | $config | ) |
Initialize the internal static variables using the global variables
| Config | $config | Configuration object to load data from |
Definition at line 117 of file PasswordFactory.php.
References $type.
| PasswordFactory::needsUpdate | ( | Password | $password | ) |
Determine whether a password object needs updating.
Check whether the given password is of the default type. If it is, pass off further needsUpdate checks to Password::needsUpdate.
| Password | $password |
Definition at line 216 of file PasswordFactory.php.
| PasswordFactory::newFromCiphertext | ( | ?string | $hash | ) |
Create a new Hash object from an existing string hash.
Parse the type of a hash and create a new hash object based on the parsed type. Pass the raw hash to the constructor of the new object. Use InvalidPassword type if a null hash is given.
| string | null | $hash | Existing hash or null for an invalid password |
| PasswordError | If hash is invalid or type is not recognized |
Definition at line 145 of file PasswordFactory.php.
| PasswordFactory::newFromPlaintext | ( | ?string | $password, |
| Password | $existing = null ) |
Create a new Hash object from a plaintext password.
If no existing object is given, make a new default object. If one is given, clone that object. Then pass the plaintext to Password::crypt().
| string | null | $password | Plaintext password, or null for an invalid password |
| Password | null | $existing | Optional existing hash to get options from |
Definition at line 189 of file PasswordFactory.php.
| PasswordFactory::newFromType | ( | string | $type | ) |
Make a new default password of the given type.
| string | $type | Existing type |
| PasswordError | If hash is invalid or type is not recognized |
Definition at line 169 of file PasswordFactory.php.
|
static |
Create an InvalidPassword.
Definition at line 246 of file PasswordFactory.php.
| PasswordFactory::register | ( | string | $type, |
| array | $config ) |
Register a new type of password hash.
| string | $type | Unique type name for the hash. Will be prefixed to the password hashes to identify what hashing method was used. |
| array | $config | Array of configuration options. 'class' is required (the Password subclass name), everything else is passed to the constructor of that class. |
Definition at line 80 of file PasswordFactory.php.
| PasswordFactory::setDefaultType | ( | string | $type | ) |
Set the default password type.
This type will be used for creating new passwords when the type is not specified. Passwords of a different type will be considered outdated and in need of update.
| string | $type | Password hash type |
| InvalidArgumentException | If the type is not registered |
Definition at line 94 of file PasswordFactory.php.
Referenced by __construct().