Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 18773 программиста и 1632 робота. Сейчас ищут 1709 программистов ...
Crypt_CHAP_MSv2::ntPasswordHashHash()
Вернуться к: Crypt_CHAP
Crypt_CHAP_MSv2::ntPasswordHashHash()
Crypt_CHAP_MSv2::ntPasswordHashHash() – Generates an MD4 Hash from the NT-Hash.
Synopsis
string Crypt_CHAP_MSv2::ntPasswordHashHash ( string $nthash )
This method generates an MD4 Hash from the given NT-Hash.
Parameter
-
string $nthash - the NT-Hash to be hashed
Return value
string - a String containing the NT-Hash
Note
This function can not be called statically.
Example
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));
?>
Вернуться к: Crypt_CHAP