PasswordHash::PasswordHashpublicWP 1.0

Method of the class: PasswordHash{}

No Hooks.

Returns

null. Nothing (null).

Usage

$PasswordHash = new PasswordHash();
$PasswordHash->PasswordHash( $iteration_count_log2, $portable_hashes );
$iteration_count_log2(required)
.
$portable_hashes(required)
.

PasswordHash::PasswordHash() code WP 6.9.1

function PasswordHash($iteration_count_log2, $portable_hashes)
{
	self::__construct($iteration_count_log2, $portable_hashes);
}