summaryrefslogtreecommitdiffstats
path: root/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/1x_md5c.h
diff options
context:
space:
mode:
authorRoman Yeryomin <roman@advem.lv>2012-09-13 00:40:35 +0300
committerRoman Yeryomin <roman@advem.lv>2012-12-03 00:13:21 +0200
commit5deb3317cb51ac52de922bb55f8492624018906d (patch)
treec2fbe6346699d9bb0f2100490c3029519bb8fde8 /target/linux/realtek/files/drivers/net/wireless/rtl8192cd/1x_md5c.h
parent0239d37124f9184b478a42de8a7fa1bc85a6a6fe (diff)
Add realtek target files
Signed-off-by: Roman Yeryomin <roman@advem.lv>
Diffstat (limited to 'target/linux/realtek/files/drivers/net/wireless/rtl8192cd/1x_md5c.h')
-rw-r--r--target/linux/realtek/files/drivers/net/wireless/rtl8192cd/1x_md5c.h62
1 files changed, 62 insertions, 0 deletions
diff --git a/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/1x_md5c.h b/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/1x_md5c.h
new file mode 100644
index 000000000..3eda53254
--- /dev/null
+++ b/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/1x_md5c.h
@@ -0,0 +1,62 @@
+/*
+ * 8021x_md5c.h - header file for MD5C.C
+ */
+
+#ifndef P8021X_MD5C_H
+#define P8021X_MD5C_H
+
+/* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
+rights reserved.
+
+License to copy and use this software is granted provided that it
+is identified as the "RSA Data Security, Inc. MD5 Message-Digest
+Algorithm" in all material mentioning or referencing this software
+or this function.
+
+License is also granted to make and use derivative works provided
+that such works are identified as "derived from the RSA Data
+Security, Inc. MD5 Message-Digest Algorithm" in all material
+mentioning or referencing the derived work.
+
+RSA Data Security, Inc. makes no representations concerning either
+the merchantability of this software or the suitability of this
+
+software for any particular purpose. It is provided "as is"
+without express or implied warranty of any kind.
+
+These notices must be retained in any copies of any part of this
+documentation and/or software.
+ */
+
+
+/* MD5_TYPE.H - RSAREF types and constants */
+
+/* POINTER defines a generic pointer type */
+typedef unsigned char *POINTER;
+
+/* UINT2 defines a two byte word */
+typedef unsigned short int UINT2;
+
+/* UINT4 defines a four byte word */
+typedef unsigned long int UINT4;
+
+/* UINT4 defines a four byte word */
+typedef unsigned char UINT8;
+typedef unsigned long UINT32;
+typedef int INT32;
+
+
+/* MD5 context. */
+typedef struct {
+ UINT4 state[4]; /* state (ABCD) */
+ UINT4 count[2]; /* number of bits, modulo 2^64 (lsb first) */
+ unsigned char buffer[64]; /* input buffer */
+} MD5_CTX;
+
+void wlan_MD5_Init(MD5_CTX *);
+void wlan_MD5_Update(MD5_CTX *, UINT8 *, UINT32);
+void wlan_MD5_Final(unsigned char [16], MD5_CTX *);
+//void hmac_md5(UINT8 *, INT32, UINT8 * , INT32, UINT8 * );
+
+
+#endif