PHP Класс Corcel\Password\PasswordService

Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
__construct ( )
check ( string $password, string $hash, string | integer $user_id = '' ) : boolean Checks the plaintext password against the encrypted Password.
makeHash ( string $password ) : string Create a hash (encrypt) of a plain text password.

Описание методов

__construct() публичный Метод

public __construct ( )

check() публичный Метод

Maintains compatibility between old version and the new cookie authentication protocol using PHPass library. The $hash parameter is the encrypted password and the function compares the plain text password when encrypted similarly against the already encrypted password to see if they match. For integration with other applications, this function can be overwritten to instead use the other package password checking algorithm.
С версии: 2.5.0
public check ( string $password, string $hash, string | integer $user_id = '' ) : boolean
$password string Plaintext user's password
$hash string Hash of the user's password to check against.
$user_id string | integer Optional. User ID.
Результат boolean False, if the $password does not match the hashed password

makeHash() публичный Метод

For integration with other applications, this function can be overwritten to instead use the other package password checking algorithm.
С версии: 2.5.0
public makeHash ( string $password ) : string
$password string Plain text user password to hash
Результат string The hash string of the password