44 '' => [
'type' =>
'',
'class' => InvalidPassword::class ],
53 public function register(
$type, array $config ) {
54 $config[
'type'] =
$type;
55 $this->types[
$type] = $config;
65 if ( !isset( $this->types[
$type] ) ) {
66 throw new InvalidArgumentException(
"Invalid password type $type." );
68 $this->
default =
$type;
77 return $this->default;
114 if ( $hash ===
null || $hash ===
false || $hash ===
'' ) {
116 } elseif ( $hash[0] !==
':' ) {
120 $type = substr( $hash, 1, strpos( $hash,
':', 1 ) - 1 );
121 if ( !isset( $this->types[
$type] ) ) {
122 throw new PasswordError(
"Unrecognized password hash type $type." );
125 $config = $this->types[
$type];
127 return new $config[
'class']( $this, $config, $hash );
138 if ( !isset( $this->types[
$type] ) ) {
139 throw new PasswordError(
"Unrecognized password hash type $type." );
142 $config = $this->types[
$type];
144 return new $config[
'class']( $this, $config );
158 if ( $password ===
null ) {
162 if ( $existing ===
null ) {
163 $config = $this->types[$this->default];
164 $obj =
new $config[
'class']( $this, $config );
166 $obj = clone $existing;
169 $obj->crypt( $password );
185 if ( $password->
getType() !== $this->default ) {
201 $length = max( 10, $minLength );
206 return substr( Wikimedia\base_convert( $hex, 16, 32, $length ), -$length );
215 static $password =
null;
217 if ( $password ===
null ) {
218 $factory =
new self();
Represents an invalid password hash.
static generateHex( $chars, $forceStrong=false)
Generate a run of (ideally) cryptographically random data and return it in hexadecimal string format.
Show an error when any operation involving passwords fails to run.
Factory class for creating and checking Password objects.
getDefaultType()
Get the default password type.
string $default
The default PasswordHash type.
static generateRandomPasswordString( $minLength=10)
Generate a random string suitable for a password.
newFromType( $type)
Make a new default password of the given type.
needsUpdate(Password $password)
Determine whether a password object needs updating.
setDefaultType( $type)
Set the default password type.
init(Config $config)
Initialize the internal static variables using the global variables.
getTypes()
Get the list of types of passwords.
static newInvalidPassword()
Create an InvalidPassword.
array $types
Mapping of password types to classes.
newFromCiphertext( $hash)
Create a new Hash object from an existing string hash.
newFromPlaintext( $password, Password $existing=null)
Create a new Hash object from a plaintext password.
Represents a password hash for use in authentication.
getType()
Get the type name of the password.
needsUpdate()
Determine if the hash needs to be updated.
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Interface for configuration instances.
get( $name)
Get a configuration variable such as "Sitename" or "UploadMaintenance.".