Joomla Platform
13.1
Documentation des API du framework Joomla Platform
|
Fonctions membres publiques | |
create ($password, $type=null) | |
verify ($password, $hash) | |
setDefaultType ($type) | |
getDefaultType () |
Attributs publics | |
const | BLOWFISH = '$2y$' |
const | JOOMLA = 'Joomla' |
const | PBKDF = '$pbkdf$' |
const | MD5 = '$1$' |
Définition à la ligne 19 du fichier password.php.
JCryptPassword::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 JCryptPasswordSimple.
JCryptPassword::getDefaultType | ( | ) |
JCryptPassword::setDefaultType | ( | $type | ) |
Sets a default prefix
string | $type | The prefix to set as default |
Implémenté dans JCryptPasswordSimple.
JCryptPassword::verify | ( | $password, | |
$hash | |||
) |
Verifies a password hash
string | $password | The password to verify. |
string | $hash | The password hash to check. |
Implémenté dans JCryptPasswordSimple.
const JCryptPassword::BLOWFISH = '$2y$' |
Définition à la ligne 21 du fichier password.php.
Référencé par JCryptPasswordSimple\create().
const JCryptPassword::JOOMLA = 'Joomla' |
Définition à la ligne 23 du fichier password.php.
Référencé par JCryptPasswordSimple\create().
const JCryptPassword::MD5 = '$1$' |
Définition à la ligne 27 du fichier password.php.
Référencé par JCryptPasswordSimple\create().
const JCryptPassword::PBKDF = '$pbkdf$' |
Définition à la ligne 25 du fichier password.php.