Skip to content

Instantly share code, notes, and snippets.

@daniel-e
daniel-e / main.rs
Last active May 2, 2017 14:28 — forked from wITTus/main.rs
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() {