mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 16:08:59 +00:00
29 lines
972 B
C
29 lines
972 B
C
|
#ifndef PQCLEAN_SPHINCSSHAKE256192SSIMPLE_AVX2_THASH_H
|
||
|
#define PQCLEAN_SPHINCSSHAKE256192SSIMPLE_AVX2_THASH_H
|
||
|
|
||
|
#include "hash_state.h"
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void PQCLEAN_SPHINCSSHAKE256192SSIMPLE_AVX2_thash_1(
|
||
|
unsigned char *out, const unsigned char *in,
|
||
|
const unsigned char *pub_seed, uint32_t addr[8],
|
||
|
const hash_state *hash_state_seeded);
|
||
|
|
||
|
void PQCLEAN_SPHINCSSHAKE256192SSIMPLE_AVX2_thash_2(
|
||
|
unsigned char *out, const unsigned char *in,
|
||
|
const unsigned char *pub_seed, uint32_t addr[8],
|
||
|
const hash_state *hash_state_seeded);
|
||
|
|
||
|
void PQCLEAN_SPHINCSSHAKE256192SSIMPLE_AVX2_thash_WOTS_LEN(
|
||
|
unsigned char *out, const unsigned char *in,
|
||
|
const unsigned char *pub_seed, uint32_t addr[8],
|
||
|
const hash_state *hash_state_seeded);
|
||
|
|
||
|
void PQCLEAN_SPHINCSSHAKE256192SSIMPLE_AVX2_thash_FORS_TREES(
|
||
|
unsigned char *out, const unsigned char *in,
|
||
|
const unsigned char *pub_seed, uint32_t addr[8],
|
||
|
const hash_state *hash_state_seeded);
|
||
|
|
||
|
#endif
|