2020-10-16 01:00:04 +01:00
|
|
|
|
#ifndef CBD_H
|
|
|
|
|
#define CBD_H
|
|
|
|
|
/*---------------------------------------------------------------------
|
|
|
|
|
This file has been adapted from the implementation
|
|
|
|
|
(available at, Public Domain https://github.com/pq-crystals/kyber)
|
|
|
|
|
of "CRYSTALS – Kyber: a CCA-secure module-lattice-based KEM"
|
|
|
|
|
by : Joppe Bos, Leo Ducas, Eike Kiltz, Tancrede Lepoint,
|
|
|
|
|
Vadim Lyubashevsky, John M. Schanck, Peter Schwabe & Damien stehle
|
|
|
|
|
----------------------------------------------------------------------*/
|
2020-10-28 16:02:04 +00:00
|
|
|
|
#include "SABER_params.h"
|
2020-10-16 01:00:04 +01:00
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
2020-10-28 16:02:04 +00:00
|
|
|
|
void PQCLEAN_LIGHTSABER_AVX2_cbd(uint16_t s[SABER_N], const uint8_t buf[SABER_POLYCOINBYTES]);
|
2020-10-16 01:00:04 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|