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
- Host: GitHub
- URL: https://github.com/reisraff/vigenere
- Owner: reisraff
- License: mit
- Created: 2017-09-12T18:50:58.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2021-01-27T19:09:40.000Z (over 4 years ago)
- Last Synced: 2025-01-18T05:14:24.116Z (9 months ago)
- Language: C
- Size: 9.77 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)