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.
您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
|
12345678910111213 |
- #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
|