Manual:Hooks/UserCryptPassword
From MediaWiki.org
| UserCryptPassword | |
|---|---|
| Available from version 1.14.0 Called when hashing a password. |
|
*Define function: |
function fnMyHook( &$password, &$salt, &$wgPasswordSalt, &$hash ) { ... }
|
*Attach hook: |
$wgHooks['UserCryptPassword'][] = 'fnMyHook'; |
| Called from: | User.php |
*For more information about attaching hooks, see Manual:Hooks.
*For examples of extensions using this hook, see Category:UserCryptPassword extensions.
[edit] Details
Return false to implement your own hashing method.
- &$password: String of the plaintext password to encrypt
- &$salt: String of the password salt or Boolean false if no salt is provided
- &$wgPasswordSalt: Boolean of whether the salt is used in the default hashing method
- &$hash: If the hook returns false, this String will be used as the hash