pqc/crypto_sign/dilithium4/avx2/stream.h

16 lines
400 B
C
Raw Normal View History

2019-12-06 15:16:41 +00:00
#ifndef PQCLEAN_DILITHIUM4_AVX2_STREAM_H
#define PQCLEAN_DILITHIUM4_AVX2_STREAM_H
#include <stdint.h>
#include "fips202.h"
#include "params.h"
void PQCLEAN_DILITHIUM4_AVX2_shake128_stream_init(
shake128ctx *state, const uint8_t seed[SEEDBYTES], uint16_t nonce);
void PQCLEAN_DILITHIUM4_AVX2_shake256_stream_init(
shake256ctx *state, const uint8_t seed[CRHBYTES], uint16_t nonce);
#endif