-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecryptionizer.cpp
executable file
·140 lines (132 loc) · 4.34 KB
/
decryptionizer.cpp
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
string Rotate(string&, short);
short TheGuess(string&);
short FindInAlphabet(char);
struct Single
{
char letter;
short distance;
};
string alphabet = "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz"; // 2 sets for array overrunning might need 3
int main()
{
system("cls");
string filename, encryption;
cout << "Input the file name to decrypt : ";
cin >> filename;
ifstream input(filename.c_str());
if (input)
{
char currentChar;
while (input.get(currentChar))
encryption += currentChar;
input.close();
system("cls");
cout << "\n" << encryption;
cout << "\n----------------------------\n"
<< "That was the encrypted text.\n"
<< "----------------------------\n";
system("pause");
short choice;
do
{
cout << "\nChoose decryption method\n"
<< "--------------------------------------\n"
<< "1. Use your own character rotation key\n"
<< "2. Have this dumb program try a quess\n\n"
<< "\nChoose : ";
cin >> choice;
} while (choice < 1 || choice > 2);
string decryption;
if (choice == 1)
{
system("cls");
short rotateBy;
do
{
cout << "Enter the number character rotations (1-25) : ";
cin >> rotateBy;
} while (rotateBy < 0 || rotateBy > 25);
decryption = Rotate(encryption, rotateBy);
}
else
decryption = Rotate(encryption, TheGuess(encryption));
system("cls");
cout << "\n" << decryption;
cout << "\n----------------------------\n"
<< "That was the decrypted text.\n"
<< "----------------------------\n";
cout << "\nInput a file name to save : ";
cin >> filename;
ofstream output(filename.c_str()); // doesnt append
output << decryption;
output.close();
}
else
cout << "That file does not exist!" << endl;
system("pause");
return 0;
}
string Rotate(string &toRotate, short toGo)
{
string toReturn;
bool isLetter;
for (int pos = 0; pos < toRotate.length(); pos++)
{
isLetter = false;
for (short inA = 0; inA < 26; inA++)
if (toRotate.at(pos) == alphabet.at(inA))
{
if (inA - toGo >= 0)
toReturn += alphabet[inA - toGo];
if (inA - toGo < 0)
toReturn += alphabet[52 - (toGo - inA)];
isLetter = true;
inA = 26;
}
if (!isLetter)
toReturn += toRotate.at(pos);
}
return toReturn;
}
short TheGuess(string &encryption)
{
string tempSingles = "";
for (int pos = 0; pos < encryption.length(); pos++)
if (encryption.at(pos) == ' ' && encryption.at(pos + 2) == ' ')
if (tempSingles.find(encryption.at(pos + 1), 0) == string::npos)
tempSingles += encryption.at(pos + 1);
Single theSingles[tempSingles.length()];
for (short cnt = 0; cnt < tempSingles.length(); cnt++)
theSingles[cnt].letter = tempSingles.at(cnt);
for (short num = 0; num < tempSingles.length(); num++)
for (short inA = 0; inA < 26; inA++)
if (theSingles[num].letter == alphabet.at(inA))
{
theSingles[num].distance = inA;
inA = 30;
}
string tempThe = "the";
for (short num = 0; num < tempSingles.length(); num++)
{
string encThe = Rotate(tempThe, theSingles[num].distance - (theSingles[num].distance * 2));
if (short found = encryption.find(encThe, 0) != string::npos)
{
cout << "\nQuessed rotation key was : " << theSingles[num].distance;
return theSingles[num].distance;
}
}
}
short FindInAlphabet(char toFind)
{
bool isLetter;
for (short inA = 0; inA < 25; inA++)
{
isLetter = false;
if (toFind == alphabet.at(inA))
return alphabet.at(inA);
}
}