-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhilldecode.java
112 lines (79 loc) · 2.83 KB
/
hilldecode.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
package willcrack;
import java.util.Scanner;
import java.lang.Math;
public class hilldecode {
String[] letters = {"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"};
// String[] capitalLetters = {"A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"};
String letterIndividual = "";
String letterIndividual2 = "";
int v;
int t;
int s;
int det;
public hilldecode(int a, int b, int c, int d, String plain) {
s = a;
a = d;
d = s;
b = -b;
c = -c;
det = ((a*c)-(b*d)) % 26;
for (int i = 0; i < plain.length(); i+=2) {
letterIndividual = plain.substring(i, i+1);
letterIndividual2 = plain.substring(i+1, i+2);
int y = 0;
int x = 1;
for (int j = 0; j < letters.length; j++) {
if (letterIndividual.equals(letters[j])) {
v = j;
}
if (letterIndividual2.equals(letters[j])) {
t = j;
}
}
while (det > 1) {
int q = det / 26;
int t = 26;
int m;
m = a % 26;
a = t;
t = y;
y = x - q * y;
x = t;
}
if (x < 0) {
x += 26;
}
a = (det*a) % 26;
b = (det*b) % 26;
c = (det*c) % 26;
d = (det*d) % 26;
System.out.print(letters[(a*v+b*t) % 26]);
System.out.print(letters[(c*v+d*t) % 26]);
}
System.out.println("");
}
public static void main(String[] args) {
Scanner myObj = new Scanner(System.in);
// only doing 2x2 rn
System.out.println("Key format:");
System.out.println("|a b|");
System.out.println("|c d|");
System.out.print("Enter a: ");
int a = myObj.nextInt();
Scanner myObj2 = new Scanner(System.in);
System.out.print("Enter b: ");
int b = myObj2.nextInt();
Scanner myObj3 = new Scanner(System.in);
System.out.print("Enter c: ");
int c = myObj3.nextInt();
Scanner myObj4 = new Scanner(System.in);
System.out.print("Enter d: ");
int d = myObj4.nextInt();
Scanner myObj5 = new Scanner(System.in);
System.out.print("Enter plaintext: ");
String plain = myObj5.nextLine();
System.out.print("Decoded: ");
hilldecode decode = new hilldecode(a, b, c, d, plain);
// test: Kfzb gly!
}
}