Python-ELMO is a Python library which offers an encapsulation of the binary tool ELMO, in order to manipulate it easily in Python and SageMath script.
No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- #ifndef POLYVEC_H
- #define POLYVEC_H
-
- #include "params.h"
- #include "poly.h"
-
- typedef struct{
- poly vec[KYBER_K];
- } polyvec;
-
- void polyvec_ntt(polyvec *r);
-
- #endif
|