These are my solutions to the Cryptopals cryptographic challenges.
# 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
$ deactivateEverything in this repository is distributed under the terms of the MIT License. See file "LICENSE" for further reference.