mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 16:08:59 +00:00
27 lines
505 B
C
27 lines
505 B
C
|
#ifndef REJSAMPLE_H
|
||
|
#define REJSAMPLE_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#include "poly.h"
|
||
|
|
||
|
unsigned int PQCLEAN_DILITHIUM2_AVX2_rej_uniform(
|
||
|
uint32_t *r,
|
||
|
unsigned int len,
|
||
|
const uint8_t *buf,
|
||
|
unsigned int buflen);
|
||
|
|
||
|
unsigned int PQCLEAN_DILITHIUM2_AVX2_rej_eta(
|
||
|
uint32_t *r,
|
||
|
unsigned int len,
|
||
|
const uint8_t *buf,
|
||
|
unsigned int buflen);
|
||
|
|
||
|
unsigned int PQCLEAN_DILITHIUM2_AVX2_rej_gamma1m1(
|
||
|
uint32_t *r,
|
||
|
unsigned int len,
|
||
|
const uint8_t *buf,
|
||
|
unsigned int buflen);
|
||
|
|
||
|
#endif
|