/net/mac80211/michael.h

http://github.com/mirrors/linux · C Header · 22 lines · 11 code · 6 blank · 5 comment · 0 complexity · 9b4dfa20c13234f9667004c82919d1b0 MD5 · raw file

  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Michael MIC implementation - optimized for TKIP MIC operations
  4. * Copyright 2002-2003, Instant802 Networks, Inc.
  5. */
  6. #ifndef MICHAEL_H
  7. #define MICHAEL_H
  8. #include <linux/types.h>
  9. #include <linux/ieee80211.h>
  10. #define MICHAEL_MIC_LEN 8
  11. struct michael_mic_ctx {
  12. u32 l, r;
  13. };
  14. void michael_mic(const u8 *key, struct ieee80211_hdr *hdr,
  15. const u8 *data, size_t data_len, u8 *mic);
  16. #endif /* MICHAEL_H */