Lines Matching refs:key_params
493 struct key_params *params) in wilc_wfi_cfg_copy_wep_info()
519 struct key_params *params) in wilc_wfi_cfg_copy_wpa_info()
544 bool pairwise, const u8 *mac_addr, struct key_params *params) in add_key()
692 void (*callback)(void *cookie, struct key_params *)) in get_key() argument
696 struct key_params key_params; in get_key() local
699 key_params.key = priv->wilc_gtk[key_index]->key; in get_key()
700 key_params.cipher = priv->wilc_gtk[key_index]->cipher; in get_key()
701 key_params.key_len = priv->wilc_gtk[key_index]->key_len; in get_key()
702 key_params.seq = priv->wilc_gtk[key_index]->seq; in get_key()
703 key_params.seq_len = priv->wilc_gtk[key_index]->seq_len; in get_key()
705 key_params.key = priv->wilc_ptk[key_index]->key; in get_key()
706 key_params.cipher = priv->wilc_ptk[key_index]->cipher; in get_key()
707 key_params.key_len = priv->wilc_ptk[key_index]->key_len; in get_key()
708 key_params.seq = priv->wilc_ptk[key_index]->seq; in get_key()
709 key_params.seq_len = priv->wilc_ptk[key_index]->seq_len; in get_key()
712 callback(cookie, &key_params); in get_key()