#encryption #tink #daead

tink-daead

Deterministic AEAD functionality for Rust port of Google's Tink cryptography library

9 releases

0.3.0 Nov 28, 2024
0.2.5 Mar 14, 2023
0.2.4 Mar 25, 2022
0.2.1 Oct 8, 2021
0.1.0 Jan 21, 2021

#2425 in Cryptography

Download history 28/week @ 2024-12-21 44/week @ 2024-12-28 97/week @ 2025-01-04 33/week @ 2025-01-11 55/week @ 2025-01-18 89/week @ 2025-01-25 60/week @ 2025-02-01 49/week @ 2025-02-08 167/week @ 2025-02-15 64/week @ 2025-02-22 230/week @ 2025-03-01 57/week @ 2025-03-08 53/week @ 2025-03-15 34/week @ 2025-03-22 33/week @ 2025-03-29 95/week @ 2025-04-05

237 downloads per month
Used in 2 crates

Apache-2.0

235KB
3.5K SLoC

Tink-Rust: Deterministic Authenticated Encryption with Additional Data

Docs MSRV

This crate provides deterministic authenticated encryption with additional data (DAEAD) functionality, as described in the upstream Tink documentation.

Usage

fn main() -> Result<(), Box<dyn Error>> {
    tink_daead::init();
    let kh = tink_core::keyset::Handle::new(&tink_daead::aes_siv_key_template())?;
    let d = tink_daead::new(&kh)?;

    let pt = b"this data needs to be encrypted";
    let ad = b"additional data";
    let ct1 = d.encrypt_deterministically(pt, ad)?;
    println!("'{}' => {}", String::from_utf8_lossy(pt), hex::encode(&ct1));

    let ct2 = d.encrypt_deterministically(pt, ad)?;
    assert_eq!(ct1, ct2, "cipher texts are not equal");
    println!("Cipher texts are equal.");

    let pt2 = d.decrypt_deterministically(&ct1, ad)?;
    assert_eq!(&pt[..], pt2);
    Ok(())
}

License

Apache License, Version 2.0

Disclaimer

This is not an officially supported Google product.

Dependencies

~1.8–4MB
~65K SLoC