PasswordHash::CheckPassword

Advertisement

Syntax Syntax

PasswordHash::CheckPassword( $password,  $stored_hash )

Source Source

File: wp-includes/class-phpass.php

	function CheckPassword($password, $stored_hash)
	{
		if ( strlen( $password ) > 4096 ) {
			return false;
		}

		$hash = $this->crypt_private($password, $stored_hash);
		if ($hash[0] == '*')
			$hash = crypt($password, $stored_hash);

		return $hash === $stored_hash;
	}

Advertisement

Advertisement

Leave a Reply