camellia_rs/
lib.rs

1//! Rust implementation of Camellia cipher.
2//!
3//! # Safety
4//!
5//! Unsafe codes are only used in Block.index() and index_mut().
6
7mod block;
8mod camellia;
9mod consts;
10mod error;
11
12pub use crate::{block::Block, camellia::CamelliaCipher, error::InvalidKeyLength};
13
14#[cfg(test)]
15mod tests;