Lines Matching refs:kie

91 	struct wpa_kie *kie;  in wpa_find_kie()  local
93 for_each_table_entry ( kie, WPA_KIES ) { in wpa_find_kie()
94 if ( kie->version == version ) in wpa_find_kie()
95 return kie; in wpa_find_kie()
476 struct wpa_kie *kie ) in wpa_send_eapol() argument
490 if ( kie ) in wpa_send_eapol()
491 kie->mic ( &ctx->ptk.kck, eapol, EAPOL_HDR_LEN + in wpa_send_eapol()
511 struct wpa_kie *kie ) in wpa_send_2_of_4() argument
532 return wpa_send_eapol ( iob, ctx, kie ); in wpa_send_2_of_4()
547 struct wpa_kie *kie ) in wpa_handle_1_of_4() argument
589 return wpa_send_2_of_4 ( ctx, pkt, is_rsn, kie ); in wpa_handle_1_of_4()
604 struct wpa_kie *kie ) in wpa_send_final() argument
627 return wpa_send_eapol ( iob, ctx, kie ); in wpa_send_final()
643 struct wpa_kie *kie ) in wpa_handle_3_of_4() argument
730 rc = wpa_send_final ( ctx, pkt, is_rsn, kie ); in wpa_handle_3_of_4()
762 struct wpa_kie *kie ) in wpa_handle_1_of_2() argument
796 rc = kie->decrypt ( &ctx->ptk.kek, pkt->iv, pkt->data, in wpa_handle_1_of_2()
815 return wpa_send_final ( ctx, pkt, is_rsn, kie ); in wpa_handle_1_of_2()
834 struct wpa_kie *kie; in eapol_key_rx() local
888 kie = wpa_find_kie ( ntohs ( pkt->info ) & EAPOL_KEY_INFO_VERSION ); in eapol_key_rx()
889 if ( ! kie ) { in eapol_key_rx()
900 kie->mic ( &ctx->ptk.kck, ( void * ) pkt - EAPOL_HDR_LEN, in eapol_key_rx()
931 rc = kie->decrypt ( &ctx->ptk.kek, pkt->iv, pkt->data, in eapol_key_rx()
944 rc = wpa_handle_1_of_4 ( ctx, pkt, is_rsn, kie ); in eapol_key_rx()
948 rc = wpa_handle_3_of_4 ( ctx, pkt, is_rsn, kie ); in eapol_key_rx()
952 rc = wpa_handle_1_of_2 ( ctx, pkt, is_rsn, kie ); in eapol_key_rx()