1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 07:59:01 +00:00
pqcrypto/crypto_kem/kyber768/clean/polyvec.h
2019-01-15 16:34:01 +01:00

25 lines
578 B
C

#ifndef POLYVEC_H
#define POLYVEC_H
#include "params.h"
#include "poly.h"
typedef struct {
poly vec[KYBER_K];
} polyvec;
void polyvec_compress(unsigned char *r, const polyvec *a);
void polyvec_decompress(polyvec *r, const unsigned char *a);
void polyvec_tobytes(unsigned char *r, const polyvec *a);
void polyvec_frombytes(polyvec *r, const unsigned char *a);
void polyvec_ntt(polyvec *r);
void polyvec_invntt(polyvec *r);
void polyvec_pointwise_acc(poly *r, const polyvec *a, const polyvec *b);
void polyvec_add(polyvec *r, const polyvec *a, const polyvec *b);
#endif