This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
INTEGER MODULAR ARITHMETIC | |
These functions implement modular arithmetic-related functions (Z/nZ). | |
As an implied precondition, parameters are assumed to be integers unless otherwise noted. | |
This code is time-sensitive and thus NOT safe to use for online cryptography. | |
""" | |
from typing import Iterable, Tuple, NamedTuple | |
from functools import reduce |