mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 07:59:01 +00:00
18 lines
373 B
C
18 lines
373 B
C
#ifndef _UTILS_HASH_H_
|
|
#define _UTILS_HASH_H_
|
|
/// @file utils_hash.h
|
|
/// @brief the interface for adapting hash functions.
|
|
///
|
|
///
|
|
|
|
// for the definition of _HASH_LEN.
|
|
#include "hash_len_config.h"
|
|
#include <stddef.h>
|
|
|
|
int PQCLEAN_RAINBOWIACLASSIC_CLEAN_hash_msg( unsigned char *digest, size_t len_digest, const unsigned char *m, size_t mlen );
|
|
|
|
|
|
|
|
#endif // _UTILS_HASH_H_
|
|
|