An open API service indexing awesome lists of open source software.

https://github.com/svkirillov/cryptopals-python3

My solutions to the Cryptopals cryptographic challenges
https://github.com/svkirillov/cryptopals-python3

crypto cryptopals python3

Last synced: 2 months ago
JSON representation

My solutions to the Cryptopals cryptographic challenges

Awesome Lists containing this project

README

          

# Cryptopals

These are my solutions to the [Cryptopals cryptographic challenges](https://cryptopals.com/).

## How to run

```sh
# Clone the git repository and change directory
$ git clone https://github.com/svkirillov/cryptopals-python3.git
$ cd cryptopals-python3

# Create the virtual environment
$ python3 -m venv cryptopalsvenv

# Activate the virtual environment
$ source set_env

# Install the dependecies
$ pip3 install -U -r requirements.txt

# Do something
$ ...

# Deactivate the environment
$ deactivate
```

## License

Everything in this repository is distributed under the terms of the MIT License.
See file "[LICENSE](LICENSE)" for further reference.