Question: please just complete the Railfence part in python, I did all others just stack in this part . thank you please complete this function for




please just complete the Railfence part in python, I did all others just stack in this part . thank you
please complete this function for me? just this function!
import sys
from CipherInterface import CipherInterface
class Railfence(CipherInterface):
ShiftValue = 0;
def __init__(self):
super().__init__("Railfence");
def setKey(self, key):
status = super().setKey(key);
return status;
def encrypt(self, plaintext):
encryptedData = "";
return encryptedData;
def decrypt(self, ciphertext):
decryptedData = "";
return decryptedData;
#end CaesarCipher
I need it as soon as possible please
assignment1.pdf In this assignment you shall implement the following classical ciphers: Playfair e Railfence . Cacsar (by popular demand) Your program shall be called cipher and shall be executed as: /cipher
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
