mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 07:59:01 +00:00
3b73ea134d
clang-format was not flexible enough to allow lining out things on columns with spaces.
27 lines
758 B
C
27 lines
758 B
C
#ifndef POLYVEC_H
|
|
#define POLYVEC_H
|
|
|
|
#include "params.h"
|
|
#include "poly.h"
|
|
|
|
typedef struct {
|
|
poly vec[KYBER_K];
|
|
} polyvec;
|
|
|
|
void PQCLEAN_KYBER768_polyvec_compress(unsigned char *r, const polyvec *a);
|
|
void PQCLEAN_KYBER768_polyvec_decompress(polyvec *r, const unsigned char *a);
|
|
|
|
void PQCLEAN_KYBER768_polyvec_tobytes(unsigned char *r, const polyvec *a);
|
|
void PQCLEAN_KYBER768_polyvec_frombytes(polyvec *r, const unsigned char *a);
|
|
|
|
void PQCLEAN_KYBER768_polyvec_ntt(polyvec *r);
|
|
void PQCLEAN_KYBER768_polyvec_invntt(polyvec *r);
|
|
|
|
void PQCLEAN_KYBER768_polyvec_pointwise_acc(poly *r, const polyvec *a,
|
|
const polyvec *b);
|
|
|
|
void PQCLEAN_KYBER768_polyvec_add(polyvec *r, const polyvec *a,
|
|
const polyvec *b);
|
|
|
|
#endif
|