Home
last modified time | relevance | path

Searched refs:wep_keys (Results 1 – 6 of 6) sorted by relevance

/wlan-driver/qca-wifi-host-cmn/os_if/linux/mlme/src/
H A Dosif_cm_req.c48 if (req->crypto.wep_keys->seq_len) { in osif_cm_update_wep_seq_info()
49 connect_req->crypto.wep_keys.seq_len = in osif_cm_update_wep_seq_info()
50 req->crypto.wep_keys->seq_len; in osif_cm_update_wep_seq_info()
51 connect_req->crypto.wep_keys.seq = in osif_cm_update_wep_seq_info()
52 qdf_mem_malloc(connect_req->crypto.wep_keys.seq_len); in osif_cm_update_wep_seq_info()
53 if (!connect_req->crypto.wep_keys.seq) { in osif_cm_update_wep_seq_info()
57 qdf_mem_copy(connect_req->crypto.wep_keys.seq, in osif_cm_update_wep_seq_info()
58 req->crypto.wep_keys->seq, in osif_cm_update_wep_seq_info()
59 connect_req->crypto.wep_keys.seq_len); in osif_cm_update_wep_seq_info()
80 connect_req->crypto.wep_keys.key_len = req->key_len; in osif_cm_set_wep_key_params()
[all …]
/wlan-driver/qca-wifi-host-cmn/umac/mlme/connection_mgr/utf/src/
H A Dwlan_cm_utf_main.c330 cm_utf->req.crypto.wep_keys.key_len = 0; in wlan_cm_utf_default_connect_param()
465 if (cm_utf->req.crypto.wep_keys.key) { in wlan_cm_utf_detach()
466 qdf_mem_free(cm_utf->req.crypto.wep_keys.key); in wlan_cm_utf_detach()
467 cm_utf->req.crypto.wep_keys.key = NULL; in wlan_cm_utf_detach()
797 if (cm_utf->req.crypto.wep_keys.key) { in wlan_cm_utf_update_connect_param()
798 qdf_mem_free(cm_utf->req.crypto.wep_keys.key); in wlan_cm_utf_update_connect_param()
799 cm_utf->req.crypto.wep_keys.key = NULL; in wlan_cm_utf_update_connect_param()
867 (unsigned int *)&cm_utf->req.crypto.wep_keys.key_len) != 1) in wlan_cm_utf_update_connect_param()
869 if (!cm_utf->req.crypto.wep_keys.key_len) in wlan_cm_utf_update_connect_param()
874 cm_utf->req.crypto.wep_keys.key = in wlan_cm_utf_update_connect_param()
[all …]
/wlan-driver/qca-wifi-host-cmn/umac/mlme/connection_mgr/core/src/
H A Dwlan_cm_util.c226 struct wlan_cm_wep_key_params *wep_keys; in cm_store_wep_key() local
237 wep_keys = &crypto->wep_keys; in cm_store_wep_key()
239 wep_keys->key_idx, in cm_store_wep_key()
240 wep_keys->key_len, in cm_store_wep_key()
241 wep_keys->seq_len); in cm_store_wep_key()
248 crypto_key = wlan_crypto_get_key(cm_ctx->vdev, wep_keys->key_idx); in cm_store_wep_key()
254 status = wlan_crypto_save_key(cm_ctx->vdev, wep_keys->key_idx, in cm_store_wep_key()
266 crypto_key->keylen = wep_keys->key_len; in cm_store_wep_key()
267 crypto_key->keyix = wep_keys->key_idx; in cm_store_wep_key()
268 qdf_mem_copy(&crypto_key->keyval[0], wep_keys->key, wep_keys->key_len); in cm_store_wep_key()
[all …]
H A Dwlan_cm_connect.c3458 target->crypto.wep_keys.key = NULL; in cm_allocate_and_copy_ies_and_keys()
3459 target->crypto.wep_keys.seq = NULL; in cm_allocate_and_copy_ies_and_keys()
3480 if (source->crypto.wep_keys.key) { in cm_allocate_and_copy_ies_and_keys()
3481 target->crypto.wep_keys.key = in cm_allocate_and_copy_ies_and_keys()
3482 qdf_mem_malloc(source->crypto.wep_keys.key_len); in cm_allocate_and_copy_ies_and_keys()
3483 if (!target->crypto.wep_keys.key) in cm_allocate_and_copy_ies_and_keys()
3486 qdf_mem_copy(target->crypto.wep_keys.key, in cm_allocate_and_copy_ies_and_keys()
3487 source->crypto.wep_keys.key, in cm_allocate_and_copy_ies_and_keys()
3488 source->crypto.wep_keys.key_len); in cm_allocate_and_copy_ies_and_keys()
3491 if (source->crypto.wep_keys.seq) { in cm_allocate_and_copy_ies_and_keys()
[all …]
/wlan-driver/qca-wifi-host-cmn/umac/mlme/connection_mgr/dispatcher/inc/
H A Dwlan_cm_public_struct.h95 struct wlan_cm_wep_key_params wep_keys; member
/wlan-driver/qca-wifi-host-cmn/umac/mlo_mgr/src/
H A Dwlan_mlo_mgr_sta.c54 target->crypto.wep_keys.key = NULL; in mlo_allocate_and_copy_ies()
55 target->crypto.wep_keys.seq = NULL; in mlo_allocate_and_copy_ies()
56 target->crypto.wep_keys.key_len = 0; in mlo_allocate_and_copy_ies()
57 target->crypto.wep_keys.seq_len = 0; in mlo_allocate_and_copy_ies()