MediaWiki
REL1_24
|
Helper class for password hash types that have a delimited set of parameters inside of the hash. More...
Public Member Functions | |
needsUpdate () | |
Determine if the hash needs to be updated. | |
toString () | |
Convert this hash to a string that can be stored in the database. | |
Protected Member Functions | |
getDefaultParams () | |
Return an ordered array of default parameters for this password hash. | |
getDelimiter () | |
Returns the delimiter for the parameters inside the hash. | |
parseHash ($hash) | |
Perform any parsing necessary on the hash to see if the hash is valid and/or to perform logic for seeing if the hash needs updating. | |
Protected Attributes | |
array | $args = array() |
Extra arguments that were found in the hash. | |
array | $params = array() |
Named parameters that have default values for this password type. |
Helper class for password hash types that have a delimited set of parameters inside of the hash.
All passwords are in the form of :<TYPE>:... as explained in the main Password class. This class is for hashes in the form of :<TYPE>:<PARAM1>:<PARAM2>:... where <PARAM1>, <PARAM2>, etc. are parameters that determine how the password was hashed. Of course, the internal delimiter (which is : by convention and default), can be changed by overriding the ParameterizedPassword::getDelimiter() function.
This class requires overriding an additional function: ParameterizedPassword::getDefaultParams(). See the function description for more details on the implementation.
Definition at line 38 of file ParameterizedPassword.php.
ParameterizedPassword::getDefaultParams | ( | ) | [abstract, protected] |
Return an ordered array of default parameters for this password hash.
The keys should be the parameter names and the values should be the default values. Additionally, the order of the array should be the order in which they appear in the hash.
When parsing a password hash, the constructor will split the hash based on the delimiter, and consume as many parts as it can, matching each to a parameter in this list. Once all the parameters have been filled, all remaining parts will be considered extra arguments, except, of course, for the very last part, which is the hash itself.
Reimplemented in LayeredParameterizedPassword, EncryptedPassword, BcryptPassword, Pbkdf2Password, MWSaltedPassword, and MWOldPassword.
ParameterizedPassword::getDelimiter | ( | ) | [abstract, protected] |
Returns the delimiter for the parameters inside the hash.
Reimplemented in Pbkdf2Password, BcryptPassword, MWSaltedPassword, LayeredParameterizedPassword, MWOldPassword, and EncryptedPassword.
Referenced by LayeredParameterizedPassword\partialCrypt().
Determine if the hash needs to be updated.
Reimplemented from Password.
Definition at line 79 of file ParameterizedPassword.php.
ParameterizedPassword::parseHash | ( | $ | hash | ) | [protected] |
Perform any parsing necessary on the hash to see if the hash is valid and/or to perform logic for seeing if the hash needs updating.
string | $hash | The hash, with the :<TYPE>: prefix stripped |
PasswordError | If there is an error in parsing the hash |
Reimplemented from Password.
Reimplemented in BcryptPassword.
Definition at line 50 of file ParameterizedPassword.php.
Convert this hash to a string that can be stored in the database.
The resulting string should be considered the seralized representation of this hash, i.e., if the return value were recycled back into PasswordFactory::newFromCiphertext, the returned object would be equivalent to this; also, if two objects return the same value from this function, they are considered equivalent.
Reimplemented from Password.
Definition at line 83 of file ParameterizedPassword.php.
Extra arguments that were found in the hash.
This may or may not make the hash invalid.
Definition at line 48 of file ParameterizedPassword.php.
Referenced by LayeredParameterizedPassword\crypt(), and LayeredParameterizedPassword\partialCrypt().
Named parameters that have default values for this password type.
Definition at line 42 of file ParameterizedPassword.php.
Referenced by LayeredParameterizedPassword\crypt(), LayeredParameterizedPassword\getDefaultParams(), and LayeredParameterizedPassword\partialCrypt().