| Cryptotools | ||
| docs | ||
| examples | ||
| site | ||
| tests | ||
| .gitignore | ||
| mkdocs.yml | ||
| pyproject.toml | ||
| README.md | ||
| requirements.txt | ||
| setup.py | ||
| sieves_base.py | ||
Introduction
This project contains the module cryptotools which can used for cryptography
Install the program
$ virtualenv ~/venv/myenv
$ source ~/venv/myenv/bin/activate
$ python3 setup.py install
Examples
In the directory examples/, you have different python files for using the module
Unitests
Test phi
$ python3 tests/test_phi.py -v
Test Fibonacci
For testing Fibonacci sequence, I generate a list from OEIS wich contains 40 first numbers of Fibonacci. The test_numbers.py test the Fibonacci sequence generated from the functions fibonacci in utils/numbers.py:
$ python3 tests/test_numbers.py -v
Build the doc
$ mkdocs build