This article will teach you how to use Python to make custom Encryption and Decryption. To understand this program, you should know about the following Python Programming topics:
- Python if…else Statement
- Python for Loop
- Python User-defined Functions
Problem Definition
Write a program that encrypts and decrypts the user input. Note: Your input should be only lowercase characters with no spaces. Your program should have a secret distance given by the user that will be used for encryption and decryption. Each character of the user’s input should be offset by the distance value given by the user
For Encryption:
- Take the string and reverse it.
- Encrypt the reverse string with each character replaced with distance value (x) given by the user.
For Decryption:
- Take the string and reverse it.
- Decrypt the reverse string with each character replaced with distance value (x) given by the user.
Sample:
The program should ask the user for input to encrypt and then display the resulting encrypted output. Next, your program should ask the user for input to decrypt and then display the resulting decrypted output.
Leave a Comment