示例#1
0
int ntlm_read_ntlm_v2_response(wStream* s, NTLMv2_RESPONSE* response)
{
	Stream_Read(s, response->Response, 16);
	return ntlm_read_ntlm_v2_client_challenge(s, &(response->Challenge));
}
示例#2
0
void ntlm_read_ntlm_v2_response(PStream s, NTLMv2_RESPONSE* response)
{
	StreamRead(s, response->Response, 16);
	ntlm_read_ntlm_v2_client_challenge(s, &(response->Challenge));
}