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

17 lines
595 B
C
Raw Normal View History

2019-06-18 10:00:33 +01:00
/*---------------------------------------------------------------------
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
----------------------------------------------------------------------*/
#ifndef CBD_H
#define CBD_H
#include "poly.h"
#include <stdint.h>
void PQCLEAN_SABER_CLEAN_cbd(uint16_t *r, const unsigned char *buf);
#endif