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
//! TEA (Tiny Encryption Algorithm) Block Cipher
//!
//! The `tea-soft` crate implements the TEA algorithm completely in software
//! with 16 rounds, 32 rounds, or 64 rounds.
//!
//! # Usage example
//! ```
//! use tea_soft::block_cipher::generic_array::GenericArray;
//! use tea_soft::block_cipher::{BlockCipher, NewBlockCipher};
//! use tea_soft::Tea32;
//!
//! let key = GenericArray::from_slice(&[0u8; 16]);
//! let mut block = GenericArray::clone_from_slice(&[0u8; 8]);
//! // Initialize cipher
//! let cipher = tea_soft::Tea32::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]
#![deny(unsafe_code)]
#![warn(missing_docs, rust_2018_idioms)]

pub use cipher::block as block_cipher;

mod dev;
mod impls;
mod simd;

pub use crate::impls::{Tea16, Tea32, Tea64};