1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 07:59:01 +00:00
pqcrypto/crypto_sign/sphincs-sha256-192s-robust/avx2/thashx8.h
Thom Wiggers facb527c7c SPHINCS+ optimized implementations (#253)
* Add state destroy to SHA2 API

* Include optimized SPHINCS+ implementations

I've generated new implementations from the sphincsplus repository.

* Don't destroy sha256ctx after finalize

* Attempt to shut up MSVC

* Make sure to drop errors in rmtree
2021-03-24 21:02:45 +00:00

40 lines
1.3 KiB
C

#ifndef PQCLEAN_SPHINCSSHA256192SROBUST_AVX2_THASHX8_H
#define PQCLEAN_SPHINCSSHA256192SROBUST_AVX2_THASHX8_H
#include <stdint.h>
#include "hash_state.h"
#include "sha256avx.h"
#define thashx8_variant(name) \
void PQCLEAN_SPHINCSSHA256192SROBUST_AVX2_thashx8_##name( \
unsigned char *out0, \
unsigned char *out1, \
unsigned char *out2, \
unsigned char *out3, \
unsigned char *out4, \
unsigned char *out5, \
unsigned char *out6, \
unsigned char *out7, \
const unsigned char *in0, \
const unsigned char *in1, \
const unsigned char *in2, \
const unsigned char *in3, \
const unsigned char *in4, \
const unsigned char *in5, \
const unsigned char *in6, \
const unsigned char *in7, \
const unsigned char *pub_seed, \
uint32_t addrx8[8*8], \
const hash_state *state_seeded)
thashx8_variant(1);
thashx8_variant(2);
thashx8_variant(WOTS_LEN);
thashx8_variant(FORS_TREES);
#undef thashx8_variant
#endif