class md5_phpbb2 extends base

Constants

PREFIX

Properties

protected config $config from  base
protected helper $helper
protected string $name from  base
protected request $request
protected salted_md5 $salted_md5
protected string $phpbb_root_path
protected string $php_ext

Methods

__construct(request $request, salted_md5 $salted_md5, helper $helper, string $phpbb_root_path, string $php_ext)

Constructor of passwords driver object

bool
is_supported()

Check if hash type is supported

from  base
bool
is_legacy()

Check if hash type is a legacy hash type

bool
needs_rehash(string $hash)

Check if password needs to be rehashed

from  base
string
get_settings_only(string $hash, bool $full = false)

Get only the settings of the specified hash

from  base
string
get_prefix()

Returns the hash prefix

bool|string
hash(string $password, $user_row = '')

Hash the password

bool
check(string $password, string $hash, array $user_row = array())

Check the password against the supplied hash

Details

at line 44
__construct(request $request, salted_md5 $salted_md5, helper $helper, string $phpbb_root_path, string $php_ext)

Constructor of passwords driver object

Parameters

request $request

phpBB request object

salted_md5 $salted_md5

Salted md5 driver

helper $helper

Password driver helper

string $phpbb_root_path

phpBB root path

string $php_ext

PHP file extension

in base at line 42
bool is_supported()

Check if hash type is supported

Return Value

bool

True if supported, false if not

at line 64
bool is_legacy()

Check if hash type is a legacy hash type

Return Value

bool

True if it's a legacy hash type, false if not

in base at line 58
bool needs_rehash(string $hash)

Check if password needs to be rehashed

Parameters

string $hash

Hash to check for rehash

Return Value

bool

True if password needs to be rehashed, false if not

in base at line 66
string get_settings_only(string $hash, bool $full = false)

Get only the settings of the specified hash

Parameters

string $hash

Password hash

bool $full

Return full settings or only settings related to the salt

Return Value

string

String containing the hash settings

at line 56
string get_prefix()

Returns the hash prefix

Return Value

string

Hash prefix

at line 72
bool|string hash(string $password, $user_row = '')

Hash the password

Parameters

string $password

The password that should be hashed

$user_row

Return Value

bool|string

Password hash or false if something went wrong during hashing

at line 81
bool check(string $password, string $hash, array $user_row = array())

Check the password against the supplied hash

Parameters

string $password

The password to check

string $hash

The password hash to check against

array $user_row

User's row in users table

Return Value

bool

True if password is correct, else false