SadieFish
SadieFish is a cryptography library written in Rust. It provides a set of encryption algorithms and utilities for use in applications that require secure data storage and transmission.
Features
- Caesar cipher
- Vigenère cipher
- Advanced Encryption Standard (AES) [Pending]
- Data Encryption Standard (DES) [Pending]
- Base64 encoding/decoding [Pending]
- Hexadecimal encoding/decoding
Installation
To use SadieFish in your Rust project, add the following to your Cargo.toml file:
[]
= { = "https://github.com/AitSad/SadieFish" }
Usage
To use SadieFish in your Rust code, import the necessary modules:
use ;
use ;
Then, call the desired encryption or utility function. For example, to encrypt a message using the Caesar cipher:
let message = "Hello, world!";
let key = 3;
let encrypted = encrypt;
println!;