2020-10-16 01:00:04 +01:00
|
|
|
#ifndef POLY_MUL_H
|
|
|
|
#define POLY_MUL_H
|
2019-06-18 15:37:25 +01:00
|
|
|
#include "SABER_params.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2020-10-19 17:23:48 +01:00
|
|
|
void PQCLEAN_FIRESABER_CLEAN_poly_mul_acc(uint16_t res[SABER_N], const uint16_t a[SABER_N], const uint16_t b[SABER_N]);
|
2020-10-16 01:00:04 +01:00
|
|
|
|
2019-06-18 15:37:25 +01:00
|
|
|
|
|
|
|
#endif
|