diff options
Diffstat (limited to 'include/crypto')
-rw-r--r-- | include/crypto/sha.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/crypto/sha.h b/include/crypto/sha.h index 88ef5eb9514d..45b25ccf7cc6 100644 --- a/include/crypto/sha.h +++ b/include/crypto/sha.h | |||
@@ -76,4 +76,10 @@ struct sha256_state { | |||
76 | u8 buf[SHA256_BLOCK_SIZE]; | 76 | u8 buf[SHA256_BLOCK_SIZE]; |
77 | }; | 77 | }; |
78 | 78 | ||
79 | struct sha512_state { | ||
80 | u64 state[8]; | ||
81 | u32 count[4]; | ||
82 | u8 buf[128]; | ||
83 | }; | ||
84 | |||
79 | #endif | 85 | #endif |