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
- Host: GitHub
- URL: https://github.com/svkirillov/cryptopals-python3
- Owner: svkirillov
- License: mit
- Created: 2019-10-21T06:02:19.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-27T22:35:39.000Z (over 6 years ago)
- Last Synced: 2025-03-22T23:28:26.857Z (over 1 year ago)
- Topics: crypto, cryptopals, python3
- Language: Python
- Homepage:
- Size: 116 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.