lockbox 0.1.0

Easy-to-use, secure, and efficient encryption and decryption using the AES-GCM (Galois/Counter Mode) algorithm.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "lockbox"
description = "Easy-to-use, secure, and efficient encryption and decryption using the AES-GCM (Galois/Counter Mode) algorithm."
readme = "README.md"
keywords = ["encryption", "aes", "gcm", "vault", "crypto"]
license = "MIT"
repository = "https://github.com/scrogson/lockbox"
homepage = "https://github.com/scrogson/lockbox"
documentation = "https://docs.rs/lockbox"
version = "0.1.0"
edition = "2021"

[dependencies]
aes-gcm = "0.10.3"
thiserror = "1.0.63"

[dev-dependencies]
hex = "0.4.3"