Crate des [] [src]

Data Encryption Standard parallel Rust implementation.

The only supported mode is Electronic Codebook (ECB).

Example

extern crate des;

let key = [0x13, 0x34, 0x57, 0x79, 0x9B, 0xBC, 0xDF, 0xF1];
let message = [0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF];
let cipher = des::encrypt(&message, &key);
let message = des::decrypt(&cipher, &key);

Usage

Des exports two functions: encrypt and decrypt. Use the former to encrypt some data with a key and the later to decrypt the data.

Functions

decrypt

Decrypt message using the key.

encrypt

Encrypt message using the key.

Type Definitions

Key