2019-09-09 12:40:40 +01:00
|
|
|
#ifndef _UTILS_HASH_H_
|
|
|
|
#define _UTILS_HASH_H_
|
|
|
|
/// @file utils_hash.h
|
|
|
|
/// @brief the interface for adapting hash functions.
|
|
|
|
///
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2020-11-27 17:55:15 +00:00
|
|
|
int PQCLEAN_RAINBOWVCLASSIC_CLEAN_hash_msg(unsigned char *digest, size_t len_digest, const unsigned char *m, size_t mlen);
|
2019-09-09 12:40:40 +01:00
|
|
|
|
|
|
|
#endif // _UTILS_HASH_H_
|