Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 18773 программиста и 1632 робота. Сейчас ищут 1709 программистов ...
Crypt_CHAP_MSv1::response()
Вернуться к: Crypt_CHAP
Crypt_CHAP_MSv1::response()
Crypt_CHAP_MSv1::response() – Generates the response-packet.
Synopsis
string Crypt_CHAP_MSv1::response ( bool $lm = false )
This method generates the response paket, containing the NT-Challenge-Response and/or the LM-Challenge-Response. By default the LM-Challenge-Response is not included.
Parameter
-
bool $lm - wether including the LM-Challenge-Response
Return value
string - a String containing the paket
Note
This function can not be called statically.
Example
Using Crypt_CHAP_MSv1::response()
<?php
require_once 'Crypt/CHAP.php';
$cr = new Crypt_CHAP_MSv1();
$cr->password = 'MyPw';
echo bin2hex($cr->response());
?>
Вернуться к: Crypt_CHAP