fils_aead.h 619 B

1234567891011121314151617181920
  1. /*
  2. * FILS AEAD for (Re)Association Request/Response frames
  3. * Copyright 2016, Qualcomm Atheros, Inc.
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. */
  9. #ifndef FILS_AEAD_H
  10. #define FILS_AEAD_H
  11. int fils_encrypt_assoc_req(struct sk_buff *skb,
  12. struct ieee80211_mgd_assoc_data *assoc_data);
  13. int fils_decrypt_assoc_resp(struct ieee80211_sub_if_data *sdata,
  14. u8 *frame, size_t *frame_len,
  15. struct ieee80211_mgd_assoc_data *assoc_data);
  16. #endif /* FILS_AEAD_H */