Home
last modified time | relevance | path

Searched refs:rekey_data (Results 1 – 7 of 7) sorted by relevance

/freebsd/sys/contrib/dev/iwlwifi/mvm/
H A Dd3.c31 mvmvif->rekey_data.kek_len = data->kek_len; in iwl_mvm_set_rekey_data()
32 mvmvif->rekey_data.kck_len = data->kck_len; in iwl_mvm_set_rekey_data()
35 mvmvif->rekey_data.akm = data->akm & 0xFF; in iwl_mvm_set_rekey_data()
36 mvmvif->rekey_data.replay_ctr = in iwl_mvm_set_rekey_data()
38 mvmvif->rekey_data.valid = true; in iwl_mvm_set_rekey_data()
1059 if (mvmvif->rekey_data.valid) { in iwl_mvm_wowlan_config_key_params()
1077 memcpy(kek_kck_cmd.kck, mvmvif->rekey_data.kck, in iwl_mvm_wowlan_config_key_params()
1078 mvmvif->rekey_data.kck_len); in iwl_mvm_wowlan_config_key_params()
1080 memcpy(kek_kck_cmd.kek, mvmvif->rekey_data.kek, in iwl_mvm_wowlan_config_key_params()
1081 mvmvif->rekey_data.kek_len); in iwl_mvm_wowlan_config_key_params()
[all …]
H A Dmvm.h405 } rekey_data; member
H A Dmac80211.c3543 switch (mvmvif->rekey_data.akm) { in iwl_mvm_mei_host_associated()
/freebsd/sys/contrib/dev/athk/ath11k/
H A Dmac.c3071 arvif->rekey_data.enable_offload = false; in ath11k_bss_assoc()
3129 memset(&arvif->rekey_data, 0, sizeof(arvif->rekey_data)); in ath11k_bss_disassoc()
8792 struct ath11k_rekey_data *rekey_data = &arvif->rekey_data; in ath11k_mac_op_set_rekey_data() local
8799 memcpy(rekey_data->kck, data->kck, NL80211_KCK_LEN); in ath11k_mac_op_set_rekey_data()
8800 memcpy(rekey_data->kek, data->kek, NL80211_KEK_LEN); in ath11k_mac_op_set_rekey_data()
8805 rekey_data->replay_ctr = get_unaligned_be64(data->replay_ctr); in ath11k_mac_op_set_rekey_data()
8807 arvif->rekey_data.enable_offload = true; in ath11k_mac_op_set_rekey_data()
8810 rekey_data->kck, NL80211_KCK_LEN); in ath11k_mac_op_set_rekey_data()
8812 rekey_data->kck, NL80211_KEK_LEN); in ath11k_mac_op_set_rekey_data()
8814 &rekey_data->replay_ctr, sizeof(rekey_data->replay_ctr)); in ath11k_mac_op_set_rekey_data()
H A Dwow.c605 !arvif->rekey_data.enable_offload) in ath11k_gtk_rekey_offload()
H A Dcore.h388 struct ath11k_rekey_data rekey_data; member
H A Dwmi.c8982 arvif->rekey_data.replay_ctr = replay_ctr; in ath11k_wmi_gtk_offload_status_event()
9978 struct ath11k_rekey_data *rekey_data = &arvif->rekey_data; in ath11k_wmi_gtk_rekey_offload() local
9998 memcpy(cmd->kck, rekey_data->kck, sizeof(cmd->kck)); in ath11k_wmi_gtk_rekey_offload()
10000 memcpy(cmd->kek, rekey_data->kek, sizeof(cmd->kek)); in ath11k_wmi_gtk_rekey_offload()
10003 replay_ctr = cpu_to_le64(rekey_data->replay_ctr); in ath11k_wmi_gtk_rekey_offload()