https://github.com/bbc2/cryptopals
Solution to the Crypto Challenges
https://github.com/bbc2/cryptopals
Last synced: 10 months ago
JSON representation
Solution to the Crypto Challenges
- Host: GitHub
- URL: https://github.com/bbc2/cryptopals
- Owner: bbc2
- Created: 2019-11-13T21:30:59.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2024-02-27T19:38:35.000Z (almost 2 years ago)
- Last Synced: 2025-02-18T11:02:06.912Z (12 months ago)
- Language: Python
- Size: 175 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Solution to the Cryptopals Crypto Challenges
Challenges: [https://cryptopals.com](https://cryptopals.com)
## How to check the code
```bash
poetry install
make check
```
This will run tests and linters.
The solutions to the challenges are in `test/sets`.
## Why?
To learn more about cryptography and cryptanalysis.
As an exercise, I also applied best practices in software engineering: the code is
modular, type-checked, and most of it is also unit-tested.