1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 07:59:01 +00:00
pqcrypto/crypto_kem/kyber768-90s/clean/reduce.h
John M. Schanck 127e9ec326 Round 3 Kyber
2021-03-24 21:02:49 +00:00

14 lines
330 B
C

#ifndef PQCLEAN_KYBER76890S_CLEAN_REDUCE_H
#define PQCLEAN_KYBER76890S_CLEAN_REDUCE_H
#include "params.h"
#include <stdint.h>
#define MONT 2285 // 2^16 mod q
#define QINV 62209 // q^-1 mod 2^16
int16_t PQCLEAN_KYBER76890S_CLEAN_montgomery_reduce(int32_t a);
int16_t PQCLEAN_KYBER76890S_CLEAN_barrett_reduce(int16_t a);
#endif