swarajpande5 / Caesar-and-Vigenere-Encryption-System

This system encrypts and decrypts Text to Caesar and Vigenere Ciphers using Python. The program uses Tkinter Library for GUI.
0 stars 0 forks source link
encryption-decryption hacktoberfest python tkinter

Caesar and Vigenere Encryption System

This system encrypts and decrypts Caesar and Vigenere Ciphers using Python.

To Build

In Windows, execute the following in cmd.

$ python3 main.py

or simply just run main.py on any IDE.


Files and Directory Structure

.
├── dist
    └── C&V.exe         # Executable
├── img
    └── ...             # Images and icon files
├── README.md
├── ciphers.py          # Implementation of algorithms 
└── main.py             # Calls the functions from ciphers.py and uses Tkinter library

Sources

https://en.wikipedia.org/wiki/Caesar_cipher \ https://en.wikipedia.org/wiki/Vigenère_cipher \ https://en.wikipedia.org/wiki/Transposition_cipher