Registry / crypto / aes-frast

aes-frast

JSON →
library0.2.2rscratesunverified

An easy-to-use library for AES encryption and decryption, written in pure safe Rust.

# Cargo.toml [dependencies] aes_frast = "0.2.2"
INSTALL
IMPORT
SIG · AES-FRAST
A
aes-frast
cryptorustv0.2.2
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Aes256
use aes_frast::Aes256;

Encrypts a message using AES-256.

use aes_frast::Aes256; fn main() { let key = [0u8; 32]; let cipher = Aes256::new(&key); let plaintext = b"Hello, world!"; let mut buffer = plaintext.to_vec(); cipher.encrypt(&mut buffer); println!("Encrypted: {:?}", buffer); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.2.2latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
42 hits · last 30 days
node
38
Resources
aes-frast — cargo add aes-frast · libregistry