2020-07-31 07:17:42 +01:00
|
|
|
#ifndef PQCLEAN_KYBER1024_AVX2_POLYVEC_H
|
|
|
|
#define PQCLEAN_KYBER1024_AVX2_POLYVEC_H
|
2019-09-10 10:45:01 +01:00
|
|
|
#include "params.h"
|
|
|
|
#include "poly.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
poly vec[KYBER_K];
|
|
|
|
} polyvec;
|
|
|
|
|
2020-10-27 13:48:42 +00:00
|
|
|
void PQCLEAN_KYBER1024_AVX2_polyvec_compress(uint8_t r[KYBER_POLYVECCOMPRESSEDBYTES + 2], polyvec *a);
|
|
|
|
void PQCLEAN_KYBER1024_AVX2_polyvec_decompress(polyvec *r, const uint8_t a[KYBER_POLYVECCOMPRESSEDBYTES + 12]);
|
2020-07-31 07:17:42 +01:00
|
|
|
|
|
|
|
void PQCLEAN_KYBER1024_AVX2_polyvec_tobytes(uint8_t r[KYBER_POLYVECBYTES], polyvec *a);
|
|
|
|
void PQCLEAN_KYBER1024_AVX2_polyvec_frombytes(polyvec *r, const uint8_t a[KYBER_POLYVECBYTES]);
|
|
|
|
|
2019-09-10 10:45:01 +01:00
|
|
|
void PQCLEAN_KYBER1024_AVX2_polyvec_ntt(polyvec *r);
|
2020-07-31 07:17:42 +01:00
|
|
|
void PQCLEAN_KYBER1024_AVX2_polyvec_invntt_tomont(polyvec *r);
|
|
|
|
|
2020-10-27 13:48:42 +00:00
|
|
|
void PQCLEAN_KYBER1024_AVX2_polyvec_basemul_acc_montgomery(poly *r, const polyvec *a, const polyvec *b);
|
2020-07-31 07:17:42 +01:00
|
|
|
|
2019-09-10 10:45:01 +01:00
|
|
|
void PQCLEAN_KYBER1024_AVX2_polyvec_reduce(polyvec *r);
|
|
|
|
|
|
|
|
void PQCLEAN_KYBER1024_AVX2_polyvec_add(polyvec *r, const polyvec *a, const polyvec *b);
|
|
|
|
|
|
|
|
#endif
|