Question: In python implement the decode function for the Affine cipher. It should take in the ciphertext along with the encryption key, and produce the plaintext.
In python implement the decode function for the Affine cipher. It should take in the ciphertext along with the encryption key, and produce the plaintext.
def affine_decode(ciphertext, a, b, m):
# Provide the correct implementation of this function
return ciphertext
print affine_decode("2|NNc", 7, 23, 95)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
