diff options
Diffstat (limited to 'src/lib/sha-common.h')
-rw-r--r-- | src/lib/sha-common.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/lib/sha-common.h b/src/lib/sha-common.h new file mode 100644 index 0000000..abc63ae --- /dev/null +++ b/src/lib/sha-common.h @@ -0,0 +1,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 |