Page 1 of 1

please help me with this ceasar cipher problem for PYTHON

Posted: Fri Jul 01, 2022 5:37 am
by answerhappygod
please help me with this ceasar cipher problem forPYTHON
Please Help Me With This Ceasar Cipher Problem For Python 1
Please Help Me With This Ceasar Cipher Problem For Python 1 (55.65 KiB) Viewed 29 times
Problems - Caesar Cipher: Write a program that can encrypt and decrypt using the general Caeser cipher, also known as an additive cipher. The encryption and decryption algorithms are described as follows: For each plaintext letter P, substitute the ciphertext letter C: C = E(k, p) = (p + k) mod 26, Where k takes on a value in the range 1 to 25. The decryption algorithm is: P = D(k, C) = (C - k) mod 26