1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 07:59:01 +00:00
pqcrypto/crypto_kem/kyber768/clean/reduce.c

71 lines
2.0 KiB
C
Raw Normal View History

#include "reduce.h"
#include "params.h"
static const uint32_t qinv = 7679; // -inverse_mod(q,2^18)
static const uint32_t rlog = 18;
/*************************************************
* Name: montgomery_reduce
*
* Description: Montgomery reduction; given a 32-bit integer a, computes
* 16-bit integer congruent to a * R^-1 mod q,
* where R=2^18 (see value of rlog)
*
* Arguments: - uint32_t a: input unsigned integer to be reduced; has to be in
*{0,...,2281446912}
*
* Returns: unsigned integer in {0,...,2^13-1} congruent to a * R^-1 modulo
*q.
**************************************************/
2019-01-22 16:38:22 +00:00
uint16_t PQCLEAN_KYBER768_montgomery_reduce(uint32_t a) {
2019-01-16 10:02:32 +00:00
uint32_t u;
2019-01-16 10:02:32 +00:00
u = (a * qinv);
u &= ((1 << rlog) - 1);
u *= KYBER_Q;
a = a + u;
return (uint16_t)(a >> rlog);
}
/*************************************************
* Name: barrett_reduce
*
* Description: Barrett reduction; given a 16-bit integer a, computes
* 16-bit integer congruent to a mod q in {0,...,11768}
*
* Arguments: - uint16_t a: input unsigned integer to be reduced
*
* Returns: unsigned integer in {0,...,11768} congruent to a modulo q.
**************************************************/
2019-01-22 16:38:22 +00:00
uint16_t PQCLEAN_KYBER768_barrett_reduce(uint16_t a) {
uint16_t u;
2019-01-16 10:02:32 +00:00
u = a >> 13; //((uint32_t) a * sinv) >> 16;
u *= KYBER_Q;
a -= u;
return a;
}
/*************************************************
* Name: freeze
*
* Description: Full reduction; given a 16-bit integer a, computes
* unsigned integer a mod q.
*
* Arguments: - uint16_t x: input unsigned integer to be reduced
*
* Returns: unsigned integer in {0,...,q-1} congruent to a modulo q.
**************************************************/
2019-01-22 16:38:22 +00:00
uint16_t PQCLEAN_KYBER768_freeze(uint16_t x) {
2019-01-16 10:02:32 +00:00
uint16_t m, r;
int16_t c;
2019-01-22 16:38:22 +00:00
r = PQCLEAN_KYBER768_barrett_reduce(x);
2019-01-16 10:02:32 +00:00
m = r - KYBER_Q;
c = m;
c >>= 15;
r = m ^ ((r ^ m) & c);
2019-01-16 10:02:32 +00:00
return r;
}