#authenticated-encryption #gcm #data-integrity #encryption-decryption #aes #aes-gcm

lockbox

Easy-to-use, secure, and efficient encryption and decryption using the AES-GCM (Galois/Counter Mode) algorithm

1 unstable release

0.1.0 Sep 13, 2024

#1006 in Cryptography

Download history 93/week @ 2024-09-08 46/week @ 2024-09-15 13/week @ 2024-09-22 11/week @ 2024-09-29

163 downloads per month

MIT license

14KB
172 lines

Lockbox

Lockbox is a Rust library that provides easy-to-use, secure, and efficient encryption and decryption using the AES-GCM (Galois/Counter Mode) algorithm.

It ensures data integrity and confidentiality while offering flexibility for various use cases.

Features

  • Simple and intuitive API for encrypting and decrypting data.
  • Support for customizable tags, Additional Authenticated Data (AAD), and Initialization Vectors (IV).
  • Secure default settings to avoid common cryptographic pitfalls.
  • Error handling with detailed, meaningful messages.

Installation

To use Lockbox in your Rust project, add the following to your Cargo.toml:

[dependencies]
lockbox = "0.1"

Getting Started

Here’s a quick example to get you started with Lockbox:

use lockbox::Vault;

fn main() -> Result<(), Box<dyn std::error::Error>> {
    // Generate a random key
    // This is for demo purposes. In a real situation you'll want to
    // use a stable key.
    let key = lockbox::generate_key();

    // Initialize a vault with the key and a tag
    let vault = Vault::new(&key, "AES.GCM.V1");

    // Encrypt some plaintext
    let plaintext = b"Hello, secure world!";
    let encrypted = vault.encrypt(plaintext)?;
    println!("Encrypted: {:?}", encrypted);

    // Decrypt the ciphertext
    let decrypted = vault.decrypt(&encrypted)?;
    println!("Decrypted: {}", String::from_utf8(decrypted)?);

    Ok(())
}

Dependencies

~1.1–1.7MB
~34K SLoC