Skip to content

marirs/simple-encdec-rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple Encrypt / Decrypt

Linux Arm7 Linux x86_64 macOS Windows

A very simple rust library to encrypt and decrypt strings.

Requirements

  • Rust 1.56+ (edition 2021)

Compile

cargo b --release

Example

  • Encrypt
use simple_encdec::encrypt;

let x = encrypt("hello world");
assert!(x.is_some());
assert_eq!(x.unwrap(), "a=GQVGsbbyG982gd");
  • Decrypt
use simple_encdec::decrypt;

let x = decrypt("a=GQVGsbbyG982gd");
assert!(x.is_some());
assert_eq!(x.unwrap(), "hello world");

License: MIT