Lines Matching full:response
62 * Implemented LANManager type password response to MS-CHAP challenges.
102 u_char UseNT; /* If 1, ignore the LANMan response field */
128 u_char *response /* OUT 24 octets */
135 MS_ChapResponse *response
145 u_char *response /* OUT 24 octets */) in ChallengeResponse() argument
156 DesEncrypt(challenge, ZPasswordHash + 0, response + 0); in ChallengeResponse()
157 DesEncrypt(challenge, ZPasswordHash + 7, response + 8); in ChallengeResponse()
158 DesEncrypt(challenge, ZPasswordHash + 14, response + 16); in ChallengeResponse()
161 log_packet(response, 24, "ChallengeResponse - response", LOG_DEBUG); in ChallengeResponse()
309 MS_ChapResponse *response) in ChapMS_NT() argument
337 ChallengeResponse((u_char*)rchallenge, (u_char*)md4Context.buffer, response->NTResp); in ChapMS_NT()
348 MS_ChapResponse *response) in ChapMS_LANMan() argument
361 ChallengeResponse(rchallenge, PasswordHash, response->LANManResp); in ChapMS_LANMan()
368 MS_ChapResponse response; in ChapMS() local
376 BZERO(&response, sizeof(response)); in ChapMS()
379 ChapMS_NT(rchallenge, rchallenge_len, secret, secret_len, &response); in ChapMS()
382 ChapMS_LANMan(rchallenge, rchallenge_len, secret, secret_len, &response); in ChapMS()
385 response.UseNT = !ms_lanman; in ChapMS()
387 response.UseNT = 1; in ChapMS()
390 BCOPY(&response, cstate->response, MS_CHAP_RESPONSE_LEN); in ChapMS()