Lines Matching refs:response
42 const void *challenge, size_t challenge_len, void *response, in chap_compute_md5() argument
53 MD5Final(response, &ctx); in chap_compute_md5()
270 chap_receive_bin(struct chap *chap, void *response, size_t response_len) in chap_receive_bin() argument
280 memcpy(chap->chap_response, response, response_len); in chap_receive_bin()
285 chap_receive(struct chap *chap, const char *response) in chap_receive() argument
291 error = chap_hex2bin(response, &response_bin, &response_bin_len); in chap_receive()
294 response); in chap_receive()
401 void *response; in rchap_get_response() local
405 rchap_get_response_bin(rchap, &response, &response_len); in rchap_get_response()
406 chap_r = chap_bin2hex(response, response_len); in rchap_get_response()
407 free(response); in rchap_get_response()