2019-01-15 15:03:38 +00:00
|
|
|
#ifndef POLY_H
|
|
|
|
#define POLY_H
|
|
|
|
|
|
|
|
#include "params.h"
|
2019-01-15 15:34:01 +00:00
|
|
|
#include <stdint.h>
|
2019-01-15 15:03:38 +00:00
|
|
|
|
2019-01-15 15:34:01 +00:00
|
|
|
/*
|
2019-01-15 15:03:38 +00:00
|
|
|
* Elements of R_q = Z_q[X]/(X^n + 1). Represents polynomial
|
2019-01-15 15:34:01 +00:00
|
|
|
* coeffs[0] + X*coeffs[1] + X^2*xoeffs[2] + ... + X^{n-1}*coeffs[n-1]
|
2019-01-15 15:03:38 +00:00
|
|
|
*/
|
2019-01-15 15:34:01 +00:00
|
|
|
typedef struct {
|
2019-01-16 10:02:32 +00:00
|
|
|
uint16_t coeffs[KYBER_N];
|
2019-01-15 15:03:38 +00:00
|
|
|
} poly;
|
|
|
|
|
2019-02-26 16:27:32 +00:00
|
|
|
void PQCLEAN_KYBER768_CLEAN_poly_compress(unsigned char *r, const poly *a);
|
|
|
|
void PQCLEAN_KYBER768_CLEAN_poly_decompress(poly *r, const unsigned char *a);
|
2019-01-15 15:03:38 +00:00
|
|
|
|
2019-02-26 16:27:32 +00:00
|
|
|
void PQCLEAN_KYBER768_CLEAN_poly_tobytes(unsigned char *r, const poly *a);
|
|
|
|
void PQCLEAN_KYBER768_CLEAN_poly_frombytes(poly *r, const unsigned char *a);
|
2019-01-15 15:03:38 +00:00
|
|
|
|
2019-02-26 16:27:32 +00:00
|
|
|
void PQCLEAN_KYBER768_CLEAN_poly_frommsg(poly *r, const unsigned char msg[KYBER_SYMBYTES]);
|
|
|
|
void PQCLEAN_KYBER768_CLEAN_poly_tomsg(unsigned char msg[KYBER_SYMBYTES], const poly *a);
|
2019-01-15 15:03:38 +00:00
|
|
|
|
2019-02-26 16:27:32 +00:00
|
|
|
void PQCLEAN_KYBER768_CLEAN_poly_getnoise(poly *r, const unsigned char *seed, unsigned char nonce);
|
2019-01-15 15:03:38 +00:00
|
|
|
|
2019-02-26 16:27:32 +00:00
|
|
|
void PQCLEAN_KYBER768_CLEAN_poly_ntt(poly *r);
|
|
|
|
void PQCLEAN_KYBER768_CLEAN_poly_invntt(poly *r);
|
2019-01-15 15:34:01 +00:00
|
|
|
|
2019-02-26 16:27:32 +00:00
|
|
|
void PQCLEAN_KYBER768_CLEAN_poly_add(poly *r, const poly *a, const poly *b);
|
|
|
|
void PQCLEAN_KYBER768_CLEAN_poly_sub(poly *r, const poly *a, const poly *b);
|
2019-01-15 15:03:38 +00:00
|
|
|
|
|
|
|
#endif
|