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 REDUCE_H
- #define REDUCE_H
-
- #include <stdint.h>
-
- #define MONT 2285 // 2^16 % Q
- #define QINV 62209 // q^(-1) mod 2^16
-
- int16_t montgomery_reduce(int32_t a);
-
- int16_t barrett_reduce(int16_t a);
-
- #endif
|