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: /cipherStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started