This Python script performs Vigenère cipher encryption on a given plaintext message using a provided keyword.
- Encrypts plaintext messages using the Vigenère cipher with a user-defined keyword.
- Supports uppercase letters.
- Preserves spaces and special characters in the input message.
- Repeats the keyword as needed to match the length of the plaintext message.
-
Modify the
keyword
andplaintext
variables with the keyword and message you want to encrypt. -
Run the script by executing the following command in your terminal:
python your_script_name.py
- The script will perform the encryption and print the ciphertext.
Suppose you have the following lines of code in your script:
keyword = 'VIGENERE'
plaintext = 'SELAMATDATANGDIKELASKRIPTOGRAFIYA'
After running the script, you will see the following output:
CIPCVHVWMJAZWUVRGMIUBTZYSPIK
This script is provided under the MIT License.
Replace `"your_script_name.py"` with the actual name of your script. Feel free to customize the README.md file to include additional information or usage examples as needed for your project.