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