Simple Crypt
A simple and high-level rust library to encrypt and decrypt texts, files, folders and any data with it For encryption, it uses AES-GCM-SIV-256 and Argon2
Usage
add this to Cargo.toml:
= "*"
Examples
Encrypting
let encrypted_data = encrypt.expect;
Decrypting
let data = decrypt.expect;
And there are other functions to encrypt files or folders see the documentation
Go to Documentation | Repository