Solutions to the Cryptopals challenges, sets 1 through 6, in Rust. These solutions were written with the explicit purpose of learning Rust, so don't expect the most beautiful or performant code.
If you are adventurous, you can compile & test the solutions using the cargo test
command. This command may take a reasonably long time (~10 minutes).
Some other code includes pure Rust implementations of MD-4, the Mersenne Twister, SHA-1, and SHA-256. Obviously, this code should never be used in real-world applications, but it at least looks like it produces the correct values.