1 #ifndef SHA_COMMON
2 
3 #define SHA256_RESULTLEN (256 / 8)
4 #define SHA256_BLOCK_SIZE (512 / 8)
5 
6 #define SHA384_RESULTLEN (384 / 8)
7 #define SHA384_BLOCK_SIZE (1024 / 8)
8 
9 #define SHA512_RESULTLEN (512 / 8)
10 #define SHA512_BLOCK_SIZE (1024 / 8)
11 
12 #endif
13