Skip to content

Latest commit

 

History

History
30 lines (27 loc) · 1.11 KB

README.md

File metadata and controls

30 lines (27 loc) · 1.11 KB

cryptopals-rs

The Cryptopals Crypto Challenges is a set of crytography challenges aimed at practical examples of breaking badly implemented crypto.

This repo contains solutions to the challenges written in Rust.

Usage

cargo run --release --bin 01               # replace 01 with the challenge to run
cargo run --release -p web_timing --bin 31 # for challenges 31 and 32
cargo test --release --lib                 # to run library tests

Progress

This repo is a work in progress. Challenges solved so far:

  • Set 1 (1-8)
  • Set 2 (9-16)
  • Set 3 (17-24)
  • Set 4 (25-32)
  • Set 5 (33-40)
  • Set 6 (41-48)
    • Challenge 41
    • Challenge 42
    • Challenge 43
    • Challenge 44
    • Challenge 45
    • Challenge 46
    • Challenge 47
    • Challenge 48
  • Set 7 (49-56)
  • Set 8 (57-66)