1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 16:08:59 +00:00
pqcrypto/crypto_sign/dilithium4/avx2/rejsample.h

27 lines
505 B
C
Raw Normal View History

2019-12-06 15:16:41 +00:00
#ifndef REJSAMPLE_H
#define REJSAMPLE_H
#include <stdint.h>
#include "poly.h"
unsigned int PQCLEAN_DILITHIUM4_AVX2_rej_uniform(
uint32_t *r,
unsigned int len,
const uint8_t *buf,
unsigned int buflen);
unsigned int PQCLEAN_DILITHIUM4_AVX2_rej_eta(
uint32_t *r,
unsigned int len,
const uint8_t *buf,
unsigned int buflen);
unsigned int PQCLEAN_DILITHIUM4_AVX2_rej_gamma1m1(
uint32_t *r,
unsigned int len,
const uint8_t *buf,
unsigned int buflen);
#endif