summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/crypto/sha3.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/crypto/sha3.h b/include/crypto/sha3.h
index c0c468ee099e..c9e4182ff74f 100644
--- a/include/crypto/sha3.h
+++ b/include/crypto/sha3.h
@@ -37,10 +37,6 @@
#define SHA3_STATE_SIZE 200
-struct shash_desc;
-
-int crypto_sha3_init(struct shash_desc *desc);
-
/*
* State for the Keccak-f[1600] permutation: 25 64-bit words.
*
@@ -52,8 +48,6 @@ int crypto_sha3_init(struct shash_desc *desc);
*/
struct sha3_state {
union {
- u64 st[SHA3_STATE_SIZE / 8]; /* temporarily retained for compatibility purposes */
-
__le64 words[SHA3_STATE_SIZE / 8];
u8 bytes[SHA3_STATE_SIZE];