This repository contains my current solutions for the cryptopals problem set (https://cryptopals.com/).
Tested with rustc --version:
rustc 1.45.0 (5c1f21c3b 2020-07-13)
Other dependencies are listed in Cargo.toml
All of the solutions have tests associated with them which can be compiled and executed with cargo test.
The project structure follows the cryptopals convention of splitting challenges into sets. Folders representing sets can be found under the src folder. Individual challenges are under src/sX/cY.rs where X is a valid set number, and Y is a valid challenge number.