Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a program in C# that does the following: Decrypts a message using Ceaser cipher, Transposition cipher and Vignere Cipher. The encrypted strings and keys
Write a program in C# that does the following:
- Decrypts a message using Ceaser cipher, Transposition cipher and Vignere Cipher. The encrypted strings and keys to be used are given below:
- Ceaser Cipher encrypted string = HDUILPGT HTRJGXIN XH WPGS
- Transposition Cipher encrypted string =
IEUBOIPI
NSCLFSOB
DTTETISL
ERASWMSE
- Substitution Cipher encrypted string = SZXPVIH ZIV GVMZXRLFH
- Vignere Cipher encrypted string = "LLGLV BQ QQHVG GF JUTSBLY "
Keys
- Ceaser Cipher: 15
- Transposition Cipher (4 lines, line = charindex mod 4)
- Substitution Cipher: ZYXWVUTSRQPONMLKJIHGFEDCAB
- Vignere Cipher: SECURITY
Vignere: "THERE TX SYDTM PX QWBOZRH "
Step 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