mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 16:08:59 +00:00
11 lines
248 B
C
11 lines
248 B
C
|
#ifndef SPX_THASH_H
|
||
|
#define SPX_THASH_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void PQCLEAN_SPHINCSSHAKE256128FSIMPLE_CLEAN_thash(
|
||
|
unsigned char *out, const unsigned char *in, unsigned int inblocks,
|
||
|
const unsigned char *pub_seed, uint32_t addr[8]);
|
||
|
|
||
|
#endif
|