cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

key.h (438B)


      1/* SPDX-License-Identifier: GPL-2.0-only */
      2/*
      3 * Key management related functions.
      4 *
      5 * Copyright (c) 2017-2020, Silicon Laboratories, Inc.
      6 * Copyright (c) 2010, ST-Ericsson
      7 */
      8#ifndef WFX_KEY_H
      9#define WFX_KEY_H
     10
     11#include <net/mac80211.h>
     12
     13struct wfx_dev;
     14struct wfx_vif;
     15
     16int wfx_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, struct ieee80211_vif *vif,
     17		struct ieee80211_sta *sta, struct ieee80211_key_conf *key);
     18
     19#endif