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

26 lines
458 B
C
Raw Normal View History

2019-12-06 15:16:41 +00:00
#ifndef REJSAMPLE_H
#define REJSAMPLE_H
2019-12-09 11:05:25 +00:00
#include <stddef.h>
2019-12-06 15:16:41 +00:00
#include <stdint.h>
2019-12-09 11:05:25 +00:00
uint32_t PQCLEAN_DILITHIUM3_AVX2_rej_uniform(
2019-12-06 15:16:41 +00:00
uint32_t *r,
2019-12-09 11:05:25 +00:00
size_t len,
2019-12-06 15:16:41 +00:00
const uint8_t *buf,
2019-12-09 11:05:25 +00:00
size_t buflen);
2019-12-06 15:16:41 +00:00
2019-12-09 11:05:25 +00:00
uint32_t PQCLEAN_DILITHIUM3_AVX2_rej_eta(
2019-12-06 15:16:41 +00:00
uint32_t *r,
2019-12-09 11:05:25 +00:00
size_t len,
2019-12-06 15:16:41 +00:00
const uint8_t *buf,
2019-12-09 11:05:25 +00:00
size_t buflen);
2019-12-06 15:16:41 +00:00
2019-12-09 11:05:25 +00:00
uint32_t PQCLEAN_DILITHIUM3_AVX2_rej_gamma1m1(
2019-12-06 15:16:41 +00:00
uint32_t *r,
2019-12-09 11:05:25 +00:00
size_t len,
2019-12-06 15:16:41 +00:00
const uint8_t *buf,
2019-12-09 11:05:25 +00:00
size_t buflen);
2019-12-06 15:16:41 +00:00
#endif