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

12 lines
336 B
C
Raw Normal View History

#ifndef PQCLEAN_KYBER768_CLEAN_CBD_H
#define PQCLEAN_KYBER768_CLEAN_CBD_H
#include "params.h"
#include "poly.h"
#include <stdint.h>
2020-10-27 13:48:42 +00:00
void PQCLEAN_KYBER768_CLEAN_poly_cbd_eta1(poly *r, const uint8_t buf[KYBER_ETA1 * KYBER_N / 4]);
void PQCLEAN_KYBER768_CLEAN_poly_cbd_eta2(poly *r, const uint8_t buf[KYBER_ETA2 * KYBER_N / 4]);
#endif