https://github.com/sapessi/cryptopals
Cryptopals.com challenges in Rust (while learning Rust)
https://github.com/sapessi/cryptopals
cryptopals rust rust-lang
Last synced: 9 months ago
JSON representation
Cryptopals.com challenges in Rust (while learning Rust)
- Host: GitHub
- URL: https://github.com/sapessi/cryptopals
- Owner: sapessi
- Created: 2018-11-02T17:06:53.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-07T23:54:53.000Z (over 7 years ago)
- Last Synced: 2025-02-01T03:22:09.063Z (over 1 year ago)
- Topics: cryptopals, rust, rust-lang
- Language: Rust
- Homepage:
- Size: 89.8 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cryptopals in Rust
Challenges from [CryptoPals](https://cryptopals.com) in Rust. I'm slowly going through all the exercises and learning [Rust](https://www.rust-lang.org/) at the same time. I'll publish code here as I go along and clean it up. My objective is to complete all the challenges without relying on external crates.
```bash
$ git clone https://github.com/SAPessi/cryptopals.git
$ cd cryptopals
$ cargo run
# you can also run the challenges as tests with
$ cargo test
```