pqc/crypto_sign/rainbowVc-classic/clean/utils_hash.h

12 lines
299 B
C
Raw Normal View History

2019-06-22 17:17:07 +01:00
#ifndef _UTILS_HASH_H_
#define _UTILS_HASH_H_
/// @file utils_hash.h
/// @brief the interface for adapting hash functions.
///
#include <stddef.h>
2019-07-24 09:15:48 +01:00
int PQCLEAN_RAINBOWVCCLASSIC_CLEAN_hash_msg(unsigned char *digest, size_t len_digest, const unsigned char *m, size_t mlen);
2019-06-22 17:17:07 +01:00
#endif // _UTILS_HASH_H_