Elliptic curve cryptography stuff¶
There will be some interesting things about elliptic curves: tasks and theory.
See the progress at TODO
Note
All tasks generators require SageMath to be installed.
The most easiest way to install SageMath on linux is to create an Anaconda environemnt.
Install miniconda:
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
sh Miniconda3-latest-Linux-x86_64.sh
Then follow the installation guide:
conda install mamba -c conda-forge # faster dependencies resolver
mamba create -n sage sage python=3 -c conda-forge
To use new environment, run:
conda activate sage