easydes 0.1.6

Encrypt with DES easily in Rust.
Documentation
pub mod test_constants {

    #[allow(dead_code)]
    pub const CONTROL_KEY_TABLE: [[u8; 6]; 16] = [
        [0x1b, 0x2, 0xef, 0xfc, 0x70, 0x72],
        [0x79, 0xae, 0xd9, 0xdb, 0xc9, 0xe5],
        [0x55, 0xfc, 0x8a, 0x42, 0xcf, 0x99],
        [0x72, 0xad, 0xd6, 0xdb, 0x35, 0x1d],
        [0x7c, 0xec, 0x7, 0xeb, 0x53, 0xa8],
        [0x63, 0xa5, 0x3e, 0x50, 0x7b, 0x2f],
        [0xec, 0x84, 0xb7, 0xf6, 0x18, 0xbc],
        [0xf7, 0x8a, 0x3a, 0xc1, 0x3b, 0xfb],
        [0xe0, 0xdb, 0xeb, 0xed, 0xe7, 0x81],
        [0xb1, 0xf3, 0x47, 0xba, 0x46, 0x4f],
        [0x21, 0x5f, 0xd3, 0xde, 0xd3, 0x86],
        [0x75, 0x71, 0xf5, 0x94, 0x67, 0xe9],
        [0x97, 0xc5, 0xd1, 0xfa, 0xba, 0x41],
        [0x5f, 0x43, 0xb7, 0xf2, 0xe7, 0x3a],
        [0xbf, 0x91, 0x8d, 0x3d, 0x3f, 0xa],
        [0xcb, 0x3d, 0x8b, 0xe, 0x17, 0xf5],
    ];
}