mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 07:59:01 +00:00
26 lines
1.0 KiB
C
26 lines
1.0 KiB
C
|
#ifndef PQCLEAN_SPHINCSHARAKA256FSIMPLE_AESNI_THASHX4_H
|
||
|
#define PQCLEAN_SPHINCSHARAKA256FSIMPLE_AESNI_THASHX4_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#include "hash_state.h"
|
||
|
|
||
|
#define thashx4_header(inblocks) \
|
||
|
void PQCLEAN_SPHINCSHARAKA256FSIMPLE_AESNI_thashx4_##inblocks(unsigned char *out0, \
|
||
|
unsigned char *out1, \
|
||
|
unsigned char *out2, \
|
||
|
unsigned char *out3, \
|
||
|
const unsigned char *in0, \
|
||
|
const unsigned char *in1, \
|
||
|
const unsigned char *in2, \
|
||
|
const unsigned char *in3, \
|
||
|
const unsigned char *pub_seed, uint32_t addrx4[4*8], \
|
||
|
const hash_state *state_seeded)
|
||
|
|
||
|
thashx4_header(1);
|
||
|
thashx4_header(2);
|
||
|
thashx4_header(WOTS_LEN);
|
||
|
thashx4_header(FORS_TREES);
|
||
|
|
||
|
#endif
|