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

10 lines
210 B
C
Raw Normal View History

#ifndef POLY_MUL_H
#define POLY_MUL_H
2019-06-18 10:00:33 +01:00
#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]);
2019-06-18 10:00:33 +01:00
#endif