2020-07-31 07:17:42 +01:00
|
|
|
#ifndef PQCLEAN_KYBER768_AVX2_POLY_H
|
|
|
|
#define PQCLEAN_KYBER768_AVX2_POLY_H
|
2020-10-27 13:48:42 +00:00
|
|
|
#include "align.h"
|
2019-09-10 10:45:01 +01:00
|
|
|
#include "params.h"
|
|
|
|
#include <immintrin.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2020-10-27 13:48:42 +00:00
|
|
|
typedef ALIGNED_INT16(KYBER_N) poly;
|
2019-09-10 10:45:01 +01:00
|
|
|
|
2020-10-27 13:48:42 +00:00
|
|
|
void PQCLEAN_KYBER768_AVX2_poly_compress(uint8_t r[KYBER_POLYCOMPRESSEDBYTES], const poly *a);
|
2020-07-31 07:17:42 +01:00
|
|
|
void PQCLEAN_KYBER768_AVX2_poly_decompress(poly *r, const uint8_t a[KYBER_POLYCOMPRESSEDBYTES]);
|
|
|
|
|
|
|
|
void PQCLEAN_KYBER768_AVX2_poly_tobytes(uint8_t r[KYBER_POLYBYTES], poly *a);
|
|
|
|
void PQCLEAN_KYBER768_AVX2_poly_frombytes(poly *r, const uint8_t a[KYBER_POLYBYTES]);
|
|
|
|
|
|
|
|
void PQCLEAN_KYBER768_AVX2_poly_frommsg(poly *r, const uint8_t msg[KYBER_INDCPA_MSGBYTES]);
|
|
|
|
void PQCLEAN_KYBER768_AVX2_poly_tomsg(uint8_t msg[KYBER_INDCPA_MSGBYTES], poly *a);
|
|
|
|
|
2020-10-27 13:48:42 +00:00
|
|
|
void PQCLEAN_KYBER768_AVX2_poly_getnoise_eta1(poly *r, const uint8_t seed[KYBER_SYMBYTES], uint8_t nonce);
|
|
|
|
|
|
|
|
void PQCLEAN_KYBER768_AVX2_poly_getnoise_eta2(poly *r, const uint8_t seed[KYBER_SYMBYTES], uint8_t nonce);
|
|
|
|
|
|
|
|
void PQCLEAN_KYBER768_AVX2_poly_getnoise_eta1_4x(poly *r0,
|
2019-09-10 10:45:01 +01:00
|
|
|
poly *r1,
|
|
|
|
poly *r2,
|
|
|
|
poly *r3,
|
|
|
|
const uint8_t *seed,
|
|
|
|
uint8_t nonce0,
|
|
|
|
uint8_t nonce1,
|
|
|
|
uint8_t nonce2,
|
|
|
|
uint8_t nonce3);
|
|
|
|
|
2020-10-27 13:48:42 +00:00
|
|
|
|
|
|
|
|
2019-09-10 10:45:01 +01:00
|
|
|
void PQCLEAN_KYBER768_AVX2_poly_ntt(poly *r);
|
2020-07-31 07:17:42 +01:00
|
|
|
void PQCLEAN_KYBER768_AVX2_poly_invntt_tomont(poly *r);
|
2019-09-10 10:45:01 +01:00
|
|
|
void PQCLEAN_KYBER768_AVX2_poly_nttunpack(poly *r);
|
2020-07-31 07:17:42 +01:00
|
|
|
void PQCLEAN_KYBER768_AVX2_poly_basemul_montgomery(poly *r, const poly *a, const poly *b);
|
|
|
|
void PQCLEAN_KYBER768_AVX2_poly_tomont(poly *r);
|
|
|
|
|
2019-09-10 10:45:01 +01:00
|
|
|
void PQCLEAN_KYBER768_AVX2_poly_reduce(poly *r);
|
|
|
|
|
|
|
|
void PQCLEAN_KYBER768_AVX2_poly_add(poly *r, const poly *a, const poly *b);
|
|
|
|
void PQCLEAN_KYBER768_AVX2_poly_sub(poly *r, const poly *a, const poly *b);
|
|
|
|
|
|
|
|
#endif
|