Simple Crypt

A simple and high level rust library to encrypt and decrypt text, files and any data with it

For encryption it uses AES-GCM-SIV-256 and Argon2

Usage

add this to Cargo.toml:

toml simple_crypt = "*"

Examples

Encrypting

rust let encrypted_data = encrypt(b"example text", b"example passowrd").expect("Failed to encrypt");

Decrypting

rust let data = decrypt(&encrypted_data, b"example passowrd").expect("Failed to decrypt");

Go to Documentation | Repository