Go to file
2026-01-11 09:19:22 +01:00
Cryptotools First commit 2026-01-11 09:19:22 +01:00
docs First commit 2026-01-11 09:19:22 +01:00
examples First commit 2026-01-11 09:19:22 +01:00
site First commit 2026-01-11 09:19:22 +01:00
tests First commit 2026-01-11 09:19:22 +01:00
.gitignore First commit 2026-01-11 09:19:22 +01:00
mkdocs.yml First commit 2026-01-11 09:19:22 +01:00
pyproject.toml First commit 2026-01-11 09:19:22 +01:00
README.md First commit 2026-01-11 09:19:22 +01:00
requirements.txt First commit 2026-01-11 09:19:22 +01:00
setup.py First commit 2026-01-11 09:19:22 +01:00
sieves_base.py First commit 2026-01-11 09:19:22 +01:00

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