#aead #io #encryption #decryption

no-std aead-io

A wrapper around Write/Read interfaces with AEAD

6 releases

0.2.0 Sep 15, 2022
0.1.4 May 9, 2022
0.1.2 Jan 24, 2022
0.1.1 Oct 31, 2021

#1638 in Cryptography

Download history 121/week @ 2023-10-20 113/week @ 2023-10-27 101/week @ 2023-11-03 142/week @ 2023-11-10 179/week @ 2023-11-17 194/week @ 2023-11-24 190/week @ 2023-12-01 189/week @ 2023-12-08 81/week @ 2023-12-15 206/week @ 2023-12-22 92/week @ 2023-12-29 125/week @ 2024-01-05 83/week @ 2024-01-12 91/week @ 2024-01-19 116/week @ 2024-01-26 85/week @ 2024-02-02

384 downloads per month

MIT/Apache

39KB
938 lines

aead-io

Provides a wrapper around a Write/Read object and a StreamPrimitive to provide an easy interface for doing correct encryption.

let key = b"my very super super secret key!!".into();
let plaintext = b"hello world!";

let ciphertext = {
    let mut ciphertext = Vec::default();
    let mut writer = EncryptBE32BufWriter::<ChaCha20Poly1305, _, _>::new(
        key,
        &Default::default(), // please use a better nonce ;)
        Vec::with_capacity(128),
        &mut ciphertext,
    )
    .unwrap();
    writer.write_all(plaintext)?;
    writer.flush()?;
    ciphertext
};

let decrypted = {
    let mut reader = DecryptBE32BufReader::<ChaCha20Poly1305, _, _>::new(
        key,
        Vec::with_capacity(256),
        ciphertext.as_slice(),
    )
    .unwrap();
    let mut out = Vec::new();
    let _ = reader.read_to_end(&mut out).unwrap();
    out
};

assert_eq!(decrypted, plaintext);
#

no_std

This package is compatible with no_std environments. Just disable the default features, and implement the Buffer, CappedBuffer, ResizeBuffer, Write and Read accordingly. There should be some default implementations for Vec<u8> and byte slices

License: MIT OR Apache-2.0

Dependencies

~325KB