1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! CAST5 block cipher.
//!
//! Implementation according to [RFC 2144](https://tools.ietf.org/html/rfc2144).
//!
//!
//! # Usage example
//! ```
//! use cast5::block_cipher_trait::generic_array::GenericArray;
//! use cast5::block_cipher_trait::BlockCipher;
//! use cast5::Cast5;
//!
//! let key = GenericArray::from_slice(&[0u8; 16]);
//! let mut block = GenericArray::clone_from_slice(&[0u8; 8]);
//! // Initialize cipher
//! let cipher = Cast5::new(&key);
//!
//! let block_copy = block.clone();
//! // Encrypt block in-place
//! cipher.encrypt_block(&mut block);
//! // And decrypt it back
//! cipher.decrypt_block(&mut block);
//! assert_eq!(block, block_copy);
//! ```

#![no_std]
pub extern crate block_cipher_trait;
extern crate byteorder;
#[macro_use]
extern crate opaque_debug;

pub use block_cipher_trait::BlockCipher;

mod cast5;
mod consts;
mod schedule;

pub use cast5::Cast5;