angulu 0.1.3

angulu is a library, which contains some cipher components.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// 加密器模块
pub mod crypter;
/// 编码模块
pub mod encoding;
/// 错误模块
pub mod error;
/// 哈希模块
pub mod hash;
/// 杂项
pub mod utils;

// 重导出必要组件
pub use error::*;
pub use utils::*;