An open API service indexing awesome lists of open source software.

https://github.com/reisraff/vigenere

Vigenère Decoder/Encoder
https://github.com/reisraff/vigenere

Last synced: 24 days ago
JSON representation

Vigenère Decoder/Encoder

Awesome Lists containing this project

README

          

# Vigenère

Vigenère cipher is a simple polyalphabetic cipher, in which the ciphertext is obtained by modular addition of a (repeating) key phrase and an open text (both of the same length).

Reference [http://www.programming-algorithms.net/article/45623/Vigenere-cipher](http://www.programming-algorithms.net/article/45623/Vigenere-cipher)

## Build

```bash
git clone git@github.com:reisraff/vigenere.git
cd vigenere
gcc vigenere.c -o vigenere
./vigenere
```

## Credits

[@reisraff](http://www.twitter.com/reisraff)