Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 909 Bytes

File metadata and controls

31 lines (21 loc) · 909 Bytes

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](https://docs.conda.io/en/latest/miniconda.html):

```bash
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
sh Miniconda3-latest-Linux-x86_64.sh
```

Then follow the [installation guide](http://doc.sagemath.org/html/en/installation/conda.html):

```bash
conda install mamba -c conda-forge # faster dependencies resolver
mamba create -n sage sage python=3 -c conda-forge
```

To use new environment, run:

```bash
conda activate sage
```