1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 16:08:59 +00:00
pqcrypto/crypto_kem/kyber512-90s/avx2/consts.h
2019-09-24 08:01:54 +02:00

25 lines
812 B
C

#ifndef CONSTS_H
#define CONSTS_H
#include <immintrin.h>
#include <stdint.h>
typedef union {
uint16_t as_arr[16];
__m256i as_vec;
} aligned_uint16_t;
extern const uint16_t PQCLEAN_KYBER51290S_AVX2_zetas_exp[396];
extern const uint16_t PQCLEAN_KYBER51290S_AVX2_zetas_inv_exp[396];
extern const aligned_uint16_t PQCLEAN_KYBER51290S_AVX2_16xq;
extern const aligned_uint16_t PQCLEAN_KYBER51290S_AVX2_16xqinv;
extern const aligned_uint16_t PQCLEAN_KYBER51290S_AVX2_16xv;
extern const aligned_uint16_t PQCLEAN_KYBER51290S_AVX2_16xflo;
extern const aligned_uint16_t PQCLEAN_KYBER51290S_AVX2_16xfhi;
extern const aligned_uint16_t PQCLEAN_KYBER51290S_AVX2_16xmontsqlo;
extern const aligned_uint16_t PQCLEAN_KYBER51290S_AVX2_16xmontsqhi;
extern const aligned_uint16_t PQCLEAN_KYBER51290S_AVX2_16xmask;
#endif