a655ec8a9d
* 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
29 lines
972 B
C
29 lines
972 B
C
#ifndef PQCLEAN_SPHINCSSHAKE256256FSIMPLE_AVX2_THASH_H
|
|
#define PQCLEAN_SPHINCSSHAKE256256FSIMPLE_AVX2_THASH_H
|
|
|
|
#include "hash_state.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
void PQCLEAN_SPHINCSSHAKE256256FSIMPLE_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_SPHINCSSHAKE256256FSIMPLE_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_SPHINCSSHAKE256256FSIMPLE_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_SPHINCSSHAKE256256FSIMPLE_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
|