fils_aead.h 473 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * FILS AEAD for (Re)Association Request/Response frames
  4. * Copyright 2016, Qualcomm Atheros, Inc.
  5. */
  6. #ifndef FILS_AEAD_H
  7. #define FILS_AEAD_H
  8. int fils_encrypt_assoc_req(struct sk_buff *skb,
  9. struct ieee80211_mgd_assoc_data *assoc_data);
  10. int fils_decrypt_assoc_resp(struct ieee80211_sub_if_data *sdata,
  11. u8 *frame, size_t *frame_len,
  12. struct ieee80211_mgd_assoc_data *assoc_data);
  13. #endif /* FILS_AEAD_H */