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.h

13 lines
223 B
C
Raw Normal View History

#ifndef REDUCE_H
#define REDUCE_H
#include <stdint.h>
2019-01-22 16:38:22 +00:00
uint16_t PQCLEAN_KYBER768_freeze(uint16_t x);
2019-01-22 16:38:22 +00:00
uint16_t PQCLEAN_KYBER768_montgomery_reduce(uint32_t a);
2019-01-22 16:38:22 +00:00
uint16_t PQCLEAN_KYBER768_barrett_reduce(uint16_t a);
#endif