diff options
Diffstat (limited to 'src/hash.h')
-rw-r--r-- | src/hash.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,8 +1,10 @@ -#define HASH_OUTPUT_LENGTH 16U +enum { + HASH_OUTPUT_LENGTH = 16U, +}; void hash( const size_t inlen, const void *const restrict in, - uint8_t out[HASH_OUTPUT_LENGTH] + u8 out[HASH_OUTPUT_LENGTH] ); |