summaryrefslogtreecommitdiffstats
path: root/package/d80211/src/michael.h
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-12-30 18:47:07 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-12-30 18:47:07 +0000
commit261aac942079aa99fec98168e204a0f8089c7d89 (patch)
tree763b0951c754a0ece49d14a5453e475a2f673cd0 /package/d80211/src/michael.h
parentf5b0956604742f16ddacf64b5ea9e7dfe836e2fc (diff)
add d80211 from a recent wireless-dev checkout
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5939 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/d80211/src/michael.h')
-rw-r--r--package/d80211/src/michael.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/package/d80211/src/michael.h b/package/d80211/src/michael.h
new file mode 100644
index 000000000..2e6aebabe
--- /dev/null
+++ b/package/d80211/src/michael.h
@@ -0,0 +1,20 @@
+/*
+ * Michael MIC implementation - optimized for TKIP MIC operations
+ * Copyright 2002-2003, Instant802 Networks, Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
+#ifndef MICHAEL_H
+#define MICHAEL_H
+
+#include <linux/types.h>
+
+#define MICHAEL_MIC_LEN 8
+
+void michael_mic(u8 *key, u8 *da, u8 *sa, u8 priority,
+ u8 *data, size_t data_len, u8 *mic);
+
+#endif /* MICHAEL_H */