fast-des 0.8.0

This crate implements DES encryption and NetNTLMv1 hashing in bitsliced form. a 10x-100x improvement in speed can be achieved depending on hardware.
Documentation
1
2
3
4
5
6
7
pub fn print_binary_u64(num: u64) {
    println!("{:#066b}", num)
}

pub fn print_binary_u32(num: u32) {
    println!("{:#034b}", num)
}