Skip to content

Instantly share code, notes, and snippets.

@wITTus
wITTus / main.rs
Last active May 5, 2017 11:06
Concurrent search of MD5-hashed IP through the entire IPv4 space in Rust
// [dependencies]
// rust-crypto = "0.2.36"
extern crate crypto;
use std::thread;
use crypto::md5::Md5;
use crypto::digest::Digest;
use std::process;
fn main() {