Question: Code Assignment: Brute Force Attack Using the following method to decrypt a single letter with a given key, write a program which prompts for and

Code Assignment: Brute Force Attack Using the following method to decrypt a single letter with a given key, write a program which prompts for and receives a ciphertext string, then displays all 25 possible decryptions. * Shift cipher decryption. Call for each letter of ciphertext. * @param c -the ciphertext letter (upper case) @param k - the key, the number of letters to shift by * @return p the plaintext letter (lower case) public static char decrypt(char c, int k) int p = (c-k-A') % 26; if(p
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
