1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 16:08:59 +00:00
pqcrypto/crypto_sign/sphincs-haraka-192s-simple/aesni/hashx4.h

17 lines
440 B
C
Raw Normal View History

#ifndef PQCLEAN_SPHINCSHARAKA192SSIMPLE_AESNI_HASHX4_H
#define PQCLEAN_SPHINCSHARAKA192SSIMPLE_AESNI_HASHX4_H
#include <stdint.h>
#include "hash_state.h"
void PQCLEAN_SPHINCSHARAKA192SSIMPLE_AESNI_prf_addrx4(unsigned char *out0,
unsigned char *out1,
unsigned char *out2,
unsigned char *out3,
const unsigned char *key,
const uint32_t addrx4[4 * 8],
const hash_state *state_seeded);
#endif