pqc/crypto_kem/saber/clean/poly_mul.h
2021-03-24 21:02:49 +00:00

10 lines
210 B
C

#ifndef POLY_MUL_H
#define POLY_MUL_H
#include "SABER_params.h"
#include <stdint.h>
void PQCLEAN_SABER_CLEAN_poly_mul_acc(const uint16_t a[SABER_N], const uint16_t b[SABER_N], uint16_t res[SABER_N]);
#endif