Home | History | Annotate | Download | only in ap

Lines Matching defs:challenge

221 			   u16 auth_transaction, const u8 *challenge,
230 if (!sta->challenge) {
231 /* Generate a pseudo-random challenge */
234 sta->challenge = os_zalloc(WLAN_AUTH_CHALLENGE_LEN);
235 if (sta->challenge == NULL)
239 os_free(sta->challenge);
240 sta->challenge = NULL;
245 sta->challenge, WLAN_AUTH_CHALLENGE_LEN);
254 if (!iswep || !sta->challenge || !challenge ||
255 os_memcmp_const(sta->challenge, challenge,
260 "challenge-response");
269 os_free(sta->challenge);
270 sta->challenge = NULL;
1632 const u8 *challenge = NULL;
1668 challenge = &mgmt->u.auth.variable[2];
1675 challenge ? " challenge" : "",
1919 resp = auth_shared_key(hapd, sta, auth_transaction, challenge,
1923 if (sta->challenge && auth_transaction == 1) {
1926 os_memcpy(resp_ies + 2, sta->challenge,