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.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

12345678910111213
  1. #ifndef POLYVEC_H
  2. #define POLYVEC_H
  3. #include "params.h"
  4. #include "poly.h"
  5. typedef struct{
  6. poly vec[KYBER_K];
  7. } polyvec;
  8. void polyvec_ntt(polyvec *r);
  9. #endif