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.

12345678910
  1. #ifndef NTT_H
  2. #define NTT_H
  3. #include <stdint.h>
  4. extern int16_t zetas[128];
  5. void ntt(int16_t *poly);
  6. #endif