Home | History | Annotate | Download | only in crypto

Lines Matching defs:challenge

30  * @challenge: 8-octet Challenge (OUT)
34 u8 *challenge)
48 os_memcpy(challenge, hash, 8);
93 * @challenge: 8-octet Challenge (IN)
97 void challenge_response(const u8 *challenge, const u8 *password_hash,
101 des_encrypt(challenge, password_hash, response);
102 des_encrypt(challenge, password_hash + 7, response + 8);
106 des_encrypt(challenge, zpwd, response + 16);
125 u8 challenge[8];
129 challenge);
131 challenge_response(challenge, password_hash, response);
150 u8 challenge[8];
153 challenge);
154 challenge_response(challenge, password_hash, response);
189 u8 password_hash_hash[16], challenge[8];
200 addr2[1] = challenge;
207 challenge);
241 * @challenge: 8-octet Challenge (IN)
246 void nt_challenge_response(const u8 *challenge, const u8 *password,
251 challenge_response(challenge, password_hash, response);