Crates.io | blackrock2 |
lib.rs | blackrock2 |
version | 0.1.0 |
source | src |
created_at | 2024-09-06 23:16:18.496302 |
updated_at | 2024-09-06 23:16:18.496302 |
description | A rust port of the Blackrock2 cipher |
homepage | |
repository | https://github.com/Vrtgs/blackrock2/ |
max_upload_size | |
id | 1366762 |
size | 11,885 |
A port of the Blackrock2 cipher used in Masscan to Rust. Its original purpose is efficiently randomizing the order of port scans without having to put every possible target in memory and shuffling. Original code.
use blackrock2::BlackRockIpGenerator;
for ip in BlackRockIpGenerator::new() {
println!("{ip}")
}