]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - include/crypto/sha.h
Merge branch 'sfi-base' into release
[karo-tx-linux.git] / include / crypto / sha.h
index 88ef5eb9514d491b83d8b61385f544e9ff7ec313..069e85ba97e1874a6f92cb98dc0f4794e8969249 100644 (file)
@@ -76,4 +76,10 @@ struct sha256_state {
        u8 buf[SHA256_BLOCK_SIZE];
 };
 
+struct sha512_state {
+       u64 count[2];
+       u64 state[SHA512_DIGEST_SIZE / 8];
+       u8 buf[SHA512_BLOCK_SIZE];
+};
+
 #endif