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