pqc/crypto_sign/rainbowIa-cyclic/clean/utils_hash.h

15 lines
303 B
C
Raw Normal View History

2019-06-18 10:28:41 +01:00
#ifndef _UTILS_HASH_H_
#define _UTILS_HASH_H_
/// @file utils_hash.h
/// @brief the interface for adapting hash functions.
///
#include <stddef.h>
int PQCLEAN_RAINBOWIACYCLIC_CLEAN_hash_msg( unsigned char *digest, size_t len_digest, const unsigned char *m, size_t mlen );
#endif // _UTILS_HASH_H_