#encryption #random #blackrock #perfect-rng

perfect_rand

A cipher for randomizing numbers in an arbitrary range

8 releases

0.3.0 Dec 7, 2024
0.2.0 Jul 1, 2024
0.1.5 Apr 23, 2023

#1275 in Cryptography

50 downloads per month

Unlicense

13KB
250 lines

A port of the Blackrock 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.

The DES S-boxes have been replaced with the SipHash round function.

Example

//! Print 10 random IPv4 addresses.


let randomizer = PerfectRng::from_range(2u64.pow(32));
for i in 0..10 {
    let randomized_ip = Ipv4Addr::from(randomizer.shuffle(i) as u32);
    println!("{randomized_ip:?}");
}

perfect_rand

docs.rs

A port of the Blackrock 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.

Dependencies

~330KB