https://github.com/rozbb/mcc-rust
Rust solutions for the Matasano Crypto Challenges (http://cryptopals.com)
https://github.com/rozbb/mcc-rust
Last synced: about 1 year ago
JSON representation
Rust solutions for the Matasano Crypto Challenges (http://cryptopals.com)
- Host: GitHub
- URL: https://github.com/rozbb/mcc-rust
- Owner: rozbb
- Created: 2015-05-23T04:44:43.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2017-07-21T17:10:18.000Z (almost 9 years ago)
- Last Synced: 2025-04-09T21:59:57.905Z (about 1 year ago)
- Language: Rust
- Homepage:
- Size: 240 KB
- Stars: 8
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mcc-rust
Rust solutions for the Matasano Crypto Challenges (http://cryptopals.com)
## Dependencies
* Rustc nightly
* Cargo
* An x86_64 Linux machine (I think; or at least rust-crypto seems to require it)
## Usage
To test the solutions to a particular set, `cd` into the desired set directory and run `cargo test`.
To see the standard output of the tests, run `cargo test -- --nocapture`.
To test one specific challenge, `cd` into the directory of the desired challenge, and run `cargo test -- --test tstNN` where `NN` is the number of the challenge (prefixed with 0 if it's a single digit).
To test one particular challenge and see the stardard output of the test, run `cargo test -- --nocapture --test tstNN`.