Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 820 Bytes

README.md

File metadata and controls

26 lines (16 loc) · 820 Bytes

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 ChaCha20-Poly1305 and Argon2

Usage

add this package to your Cargo.toml by running: cargo add simple_crypt

Examples

Encrypting

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

Decrypting

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

And there are other functions to encrypt files or folders see the documentation

Go to Documentation | Repository