Joomla CMS
3.10.11 (avec JPlatform 13.1 inclus)
Documentation des API du CMS Joomla en version 3.10.11 et du framework Joomla Platform intégré
|
Fonctions membres publiques | |
create ($password, $type=null) | |
verify ($password, $hash) | |
setDefaultType ($type) | |
getDefaultType () | |
Champs de données | |
const | BLOWFISH = '$2y$' |
const | JOOMLA = 'Joomla' |
const | PBKDF = '$pbkdf$' |
const | MD5 = '$1$' |
Joomla Platform Password Hashing Interface
create | ( | $password, | |
$type = null |
|||
) |
Creates a password hash
string | $password | The password to hash. |
string | $type | The type of hash. This determines the prefix of the hashing function. |
Implémenté dans SimpleCryptPassword.
getDefaultType | ( | ) |
Gets the default type
Implémenté dans SimpleCryptPassword.
setDefaultType | ( | $type | ) |
Sets a default prefix
string | $type | The prefix to set as default |
Implémenté dans SimpleCryptPassword.
verify | ( | $password, | |
$hash | |||
) |
Verifies a password hash
string | $password | The password to verify. |
string | $hash | The password hash to check. |
Implémenté dans SimpleCryptPassword.
const BLOWFISH = '$2y$' |
Référencé par SimpleCryptPassword\create().
const JOOMLA = 'Joomla' |
Référencé par SimpleCryptPassword\create().
const MD5 = '$1$' |
Référencé par SimpleCryptPassword\create().
const PBKDF = '$pbkdf$' |