blob: 1d4a3f938ae4ab90a921b257624676ca5e457d39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# ZmodN - A simple library for modular arithmetic
## ZmodN
Usage:
1. `#include "zmodn.h"` in your project
2. enjoy
## BigInt
This repo contains also a class for big integer. Performance are not great,
but you can have a look at it for educational purposes.
The script `random_bigint` can be used to generate random big integers.
## Development
Run `chmod +x test` and then `./test` to run tests.
|