summaryrefslogtreecommitdiff
path: root/network/wlan/WDI/COMMON/sha256.h
diff options
context:
space:
mode:
authorkarlf <[email protected]>2016-08-11 13:28:13 -0700
committerkarlf <[email protected]>2016-08-11 13:28:13 -0700
commit96eb96dfb613e4c745db6bd1f53a92fe7e2290fc (patch)
treead5f3ede5cbcd6b598677ce41bcf8318471bdd92 /network/wlan/WDI/COMMON/sha256.h
parent687b274aa38fd05c8c26e3068932121876d7f745 (diff)
Updated for "Windows 10 Anniversary Update" (Version 1607)
Diffstat (limited to 'network/wlan/WDI/COMMON/sha256.h')
-rw-r--r--network/wlan/WDI/COMMON/sha256.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/network/wlan/WDI/COMMON/sha256.h b/network/wlan/WDI/COMMON/sha256.h
deleted file mode 100644
index b4b0013d..00000000
--- a/network/wlan/WDI/COMMON/sha256.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * SHA256 hash implementation and interface functions
- * Copyright (c) 2003-2006, Jouni Malinen <[email protected]>
- *
- * 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.
- *
- * Alternatively, this software may be distributed under the terms of BSD
- * license.
- *
- * See README and COPYING for more details.
- */
-
-#ifndef SHA256_H
-#define SHA256_H
-
-#define SHA256_MAC_LEN 32
-
-// debug hpfan
-void sha256_vector2(int num_elem, const u8 *addr, const int *len,
- u8 *mac);
-
-void hmac_sha256_vector(const u8 *key, int key_len, int num_elem,
- const u8 *addr[], const int *len, u8 *mac);
-void hmac_sha256(const u8 *key, int key_len, const u8 *data,
- int data_len, u8 *mac);
-void sha256_prf(const u8 *key, int key_len, const char *label,
- const u8 *data, int data_len, u8 *buf, int buf_len);
-
-
-#endif /* SHA256_H */