1 unstable release
0.1.0 | Sep 21, 2023 |
---|
#8 in #decrypting
6KB
nutek-cipher-lib
a library for encrypting and decrypting text using the AES-GCM-SIV cipher
Installation
cargo add nutek-cipher-lib
Usage
use nutek_cipher_lib::aes_gcm_siv::encrypt;
use nutek_cipher_lib::aes_gcm_siv::decrypt;
fn main() {
let key = b"0123456789abcdef0123456789abcdef";
let nonce = b"123456123456";
let plaintext = b"Hello, world!";
let ciphertext = encrypt(plaintext, nonce, key);
let decrypted = decrypt(key, nonce, &ciphertext).unwrap();
assert_eq!(plaintext, decrypted);
}
License
non-commercial use only, see LICENSE
Dependencies
~1MB
~17K SLoC