mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-27 09:51:30 +00:00
15 lines
288 B
C
15 lines
288 B
C
|
/// @file hash_len_config.h
|
||
|
/// @brief defining the lenght of outputs of the internel hash functions.
|
||
|
///
|
||
|
|
||
|
#ifndef _HASH_LEN_CONFIG_H_
|
||
|
#define _HASH_LEN_CONFIG_H_
|
||
|
|
||
|
|
||
|
/// defining the lenght of outputs of the internel hash functions.
|
||
|
#ifndef _HASH_LEN
|
||
|
#define _HASH_LEN (32)
|
||
|
#endif
|
||
|
|
||
|
#endif
|