PasswordHash::PasswordHash()publicWP 1.0

Method of the class: PasswordHash{}

No Hooks.

Return

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.5.2

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