An implementation of the Vigènere cipher in Rust. This particular cipher is historical and doesn't serve the purpose to be used in modern applications that require true application.
First, Nightly Rust needs to be installed
First, add the following to Cargo.toml
:
[dependencies]
vigenere-cipher = "0.1.0"
Then, add this to any Rust file:
extern crate vigenere_cipher;
use vigenere_cipher::*;
Enter the vigenere-cipher repository and run cargo +nightly test
- Lukas A. Mueller - Initial work
SemVer applies for versioning.
This project is licensed under GNU GPLv3 - see the LICENSE file for details