modulo-n-tools 0.1.0

modulo tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# modulo_tools
add, sub, mul, pow in modulo, Montgomery multiplication.
```rust
use modulo_n_tools::*;
use modulo_n_tools::montgomery::*;
let a = add_mod(&3, &4, &5);
assert_eq!(a, 2);
let b = mul_mod(&3, &a, &5);
assert_eq!(b, 1);
let c = pow_mod(2, 6, &7);
assert_eq!(c, 1);
let m = Montgomery64::new(57);
let d = m.powmod(5, 42);
assert_eq!(d, 7);
```