110 likes | 347 Views
Information Security. CS 483 – SD Section By Dr. Daniyal Alghazzawi (2). Cryptography. Substitution Cipher Caesar Cipher. Substitution Cipher Tap Code. Substitution Cipher Pigpen Cipher. Substitution Cipher Vigenère Cipher. Substitution Cipher Codebook Cipher.
E N D
Information Security CS 483 – SD Section By Dr. DaniyalAlghazzawi (2)
Homework ? Develop a program for one of the ciphers above and use the following structure? string encode(string Plaintext, string key) { : return (Ciphertext); } string decode(string Ciphertext, string key) { : return (Plaintext); }