libcipher 0.1.4

A Rust implementation of the Advanced Encryption Standard (AES) for secure data encryption and decryption.
Documentation
1
2
3
4
5
6
mod cipher;
mod error;
mod aes;

pub use cipher::{Algorithm, Mode, Cipher};
pub use error::Error;