libcipher
A Rust implementation of the Advanced Encryption Standard (AES) for secure data encryption and decryption.
Overview
libcipher
provides a simple and efficient way to encrypt and decrypt data using the AES algorithm. Support for different modes of operation, such as ECB and CBC, allows you to choose the best approach for your needs.
Features
- AES Algorithm: Implements the Advanced Encryption Standard for secure encryption.
- Modes of Operation: Supports ECB (Electronic Codebook) and CBC (Cipher Block Chaining) modes.
- Easy to Use: Simple API for encryption and decryption.
Installation
Add this to your Cargo.toml
:
[]
= "0.1.3" # Replace with the latest version
Example
use ;