Home | History | Annotate | Download | only in crypto

Lines Matching defs:challenge

78  * @challenge: 8-octet Challenge (OUT)
83 u8 *challenge)
98 os_memcpy(challenge, hash, 8);
141 * @challenge: 8-octet Challenge (IN)
145 void challenge_response(const u8 *challenge, const u8 *password_hash,
149 des_encrypt(challenge, password_hash, response);
150 des_encrypt(challenge, password_hash + 7, response + 8);
154 des_encrypt(challenge, zpwd, response + 16);
174 u8 challenge[8];
178 username_len, challenge))
182 challenge_response(challenge, password_hash, response);
203 u8 challenge[8];
207 challenge))
209 challenge_response(challenge, password_hash, response);
246 u8 password_hash_hash[16], challenge[8];
257 addr2[1] = challenge;
266 username_len, challenge))
302 * @challenge: 8-octet Challenge (IN)
308 int nt_challenge_response(const u8 *challenge, const u8 *password,
314 challenge_response(challenge, password_hash, response);