/vigenere-cipher-rs

Vigenère Cipher in Rust

Primary LanguageRustGNU General Public License v3.0GPL-3.0

Vigenère Cipher

Current Version

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.

Getting Started

Prerequistes

First, Nightly Rust needs to be installed

Installing

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::*;

Running the tests

Enter the vigenere-cipher repository and run cargo +nightly test

Authors

  • Lukas A. Mueller - Initial work

Versioning

SemVer applies for versioning.

License

This project is licensed under GNU GPLv3 - see the LICENSE file for details

Acknowledgments