Add bruteforce to the caesar cipher (#2887)

This commit is contained in:
Subhro Acharjee
2022-01-02 02:46:53 +05:30
committed by GitHub
parent 32cdf02afb
commit 549a27a327

View File

@ -91,28 +91,50 @@ public class Caesar {
private static boolean IsSmallLatinLetter(char c) { private static boolean IsSmallLatinLetter(char c) {
return c >= 'a' && c <= 'z'; return c >= 'a' && c <= 'z';
} }
/**
* @return string array which contains all the possible decoded combination.
*/
public static String[] bruteforce(String encryptedMessage) {
String[] listOfAllTheAnswers = new String[27];
for (int i=0; i<=26; i++) {
listOfAllTheAnswers[i] = decode(encryptedMessage, i);
}
return listOfAllTheAnswers;
}
public static void main(String[] args) { public static void main(String[] args) {
Scanner input = new Scanner(System.in); Scanner input = new Scanner(System.in);
int shift = 0;
System.out.println("Please enter the message (Latin Alphabet)"); System.out.println("Please enter the message (Latin Alphabet)");
String message = input.nextLine(); String message = input.nextLine();
System.out.println(message); System.out.println(message);
System.out.println("Please enter the shift number"); System.out.println("(E)ncode or (D)ecode or (B)ruteforce?");
int shift = input.nextInt() % 26;
System.out.println("(E)ncode or (D)ecode ?");
char choice = input.next().charAt(0); char choice = input.next().charAt(0);
switch (choice) { switch (choice) {
case 'E': case 'E':
case 'e': case 'e':
System.out.println("Please enter the shift number");
shift = input.nextInt() % 26;
System.out.println( System.out.println(
"ENCODED MESSAGE IS \n" + encode(message, shift)); // send our function to handle "ENCODED MESSAGE IS \n" + encode(message, shift)); // send our function to handle
break; break;
case 'D': case 'D':
case 'd': case 'd':
System.out.println("Please enter the shift number");
shift = input.nextInt() % 26;
System.out.println("DECODED MESSAGE IS \n" + decode(message, shift)); System.out.println("DECODED MESSAGE IS \n" + decode(message, shift));
break;
case 'B':
case 'b':
String[] listOfAllTheAnswers = bruteforce(message);
for (int i =0; i<=26; i++) {
System.out.println("FOR SHIFT " + String.valueOf(i) + " decoded message is " + listOfAllTheAnswers[i]);
}
default: default:
System.out.println("default case"); System.out.println("default case");
} }
input.close(); input.close();
} }
} }