2019-01-15 15:03:38 +00:00
|
|
|
#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-15 15:03:38 +00:00
|
|
|
|
2019-01-22 16:38:22 +00:00
|
|
|
uint16_t PQCLEAN_KYBER768_montgomery_reduce(uint32_t a);
|
2019-01-15 15:03:38 +00:00
|
|
|
|
2019-01-22 16:38:22 +00:00
|
|
|
uint16_t PQCLEAN_KYBER768_barrett_reduce(uint16_t a);
|
2019-01-15 15:03:38 +00:00
|
|
|
|
|
|
|
#endif
|