string Crypt_CHAP_MSv2::ntPasswordHashHash (
string $nthash
)
This method generates an MD4 Hash from the given NT-Hash.
string $nthash
- the NT-Hash to be hashed
string
- a String containing the NT-Hash
This function can not be called statically.
Using Crypt_CHAP_MSv2::ntPasswordHashHash()
<?php
require_once 'Crypt/CHAP.php';
$cr = new Crypt_CHAP_MSv2();
$nthash = $cr->ntPasswordHash('MyPw');
echo bin2hex($cr->ntPasswordHashHash($nthash));
?>