forked from ceceww/aes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdecrypt.cpp
More file actions
224 lines (179 loc) · 6.32 KB
/
decrypt.cpp
File metadata and controls
224 lines (179 loc) · 6.32 KB
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
/* decrypt.cpp
* Performs decryption using AES 128-bit
* @author Cecelia Wisniewska
*/
#include <iostream>
#include <cstring>
#include <fstream>
#include <sstream>
#include "structures.h"
using namespace std;
/* Used in Round() and serves as the final round during decryption
* SubRoundKey is simply an XOR of a 128-bit block with the 128-bit key.
* So basically does the same as AddRoundKey in the encryption
*/
void SubRoundKey(unsigned char * state, unsigned char * roundKey) {
for (int i = 0; i < 16; i++) {
state[i] ^= roundKey[i];
}
}
/* InverseMixColumns uses mul9, mul11, mul13, mul14 look-up tables
* Unmixes the columns by reversing the effect of MixColumns in encryption
*/
void InverseMixColumns(unsigned char * state) {
unsigned char tmp[16];
tmp[0] = (unsigned char)mul14[state[0]] ^ mul11[state[1]] ^ mul13[state[2]] ^ mul9[state[3]];
tmp[1] = (unsigned char)mul9[state[0]] ^ mul14[state[1]] ^ mul11[state[2]] ^ mul13[state[3]];
tmp[2] = (unsigned char)mul13[state[0]] ^ mul9[state[1]] ^ mul14[state[2]] ^ mul11[state[3]];
tmp[3] = (unsigned char)mul11[state[0]] ^ mul13[state[1]] ^ mul9[state[2]] ^ mul14[state[3]];
tmp[4] = (unsigned char)mul14[state[4]] ^ mul11[state[5]] ^ mul13[state[6]] ^ mul9[state[7]];
tmp[5] = (unsigned char)mul9[state[4]] ^ mul14[state[5]] ^ mul11[state[6]] ^ mul13[state[7]];
tmp[6] = (unsigned char)mul13[state[4]] ^ mul9[state[5]] ^ mul14[state[6]] ^ mul11[state[7]];
tmp[7] = (unsigned char)mul11[state[4]] ^ mul13[state[5]] ^ mul9[state[6]] ^ mul14[state[7]];
tmp[8] = (unsigned char)mul14[state[8]] ^ mul11[state[9]] ^ mul13[state[10]] ^ mul9[state[11]];
tmp[9] = (unsigned char)mul9[state[8]] ^ mul14[state[9]] ^ mul11[state[10]] ^ mul13[state[11]];
tmp[10] = (unsigned char)mul13[state[8]] ^ mul9[state[9]] ^ mul14[state[10]] ^ mul11[state[11]];
tmp[11] = (unsigned char)mul11[state[8]] ^ mul13[state[9]] ^ mul9[state[10]] ^ mul14[state[11]];
tmp[12] = (unsigned char)mul14[state[12]] ^ mul11[state[13]] ^ mul13[state[14]] ^ mul9[state[15]];
tmp[13] = (unsigned char)mul9[state[12]] ^ mul14[state[13]] ^ mul11[state[14]] ^ mul13[state[15]];
tmp[14] = (unsigned char)mul13[state[12]] ^ mul9[state[13]] ^ mul14[state[14]] ^ mul11[state[15]];
tmp[15] = (unsigned char)mul11[state[12]] ^ mul13[state[13]] ^ mul9[state[14]] ^ mul14[state[15]];
for (int i = 0; i < 16; i++) {
state[i] = tmp[i];
}
}
// Shifts rows right (rather than left) for decryption
void ShiftRows(unsigned char * state) {
unsigned char tmp[16];
/* Column 1 */
tmp[0] = state[0];
tmp[1] = state[13];
tmp[2] = state[10];
tmp[3] = state[7];
/* Column 2 */
tmp[4] = state[4];
tmp[5] = state[1];
tmp[6] = state[14];
tmp[7] = state[11];
/* Column 3 */
tmp[8] = state[8];
tmp[9] = state[5];
tmp[10] = state[2];
tmp[11] = state[15];
/* Column 4 */
tmp[12] = state[12];
tmp[13] = state[9];
tmp[14] = state[6];
tmp[15] = state[3];
for (int i = 0; i < 16; i++) {
state[i] = tmp[i];
}
}
/* Perform substitution to each of the 16 bytes
* Uses inverse S-box as lookup table
*/
void SubBytes(unsigned char * state) {
for (int i = 0; i < 16; i++) { // Perform substitution to each of the 16 bytes
state[i] = inv_s[state[i]];
}
}
/* Each round operates on 128 bits at a time
* The number of rounds is defined in AESDecrypt()
* Not surprisingly, the steps are the encryption steps but reversed
*/
void Round(unsigned char * state, unsigned char * key) {
SubRoundKey(state, key);
InverseMixColumns(state);
ShiftRows(state);
SubBytes(state);
}
// Same as Round() but no InverseMixColumns
void InitialRound(unsigned char * state, unsigned char * key) {
SubRoundKey(state, key);
ShiftRows(state);
SubBytes(state);
}
/* The AES decryption function
* Organizes all the decryption steps into one function
*/
void AESDecrypt(unsigned char * encryptedMessage, unsigned char * expandedKey, unsigned char * decryptedMessage)
{
unsigned char state[16]; // Stores the first 16 bytes of encrypted message
for (int i = 0; i < 16; i++) {
state[i] = encryptedMessage[i];
}
InitialRound(state, expandedKey+160);
int numberOfRounds = 9;
for (int i = 8; i >= 0; i--) {
Round(state, expandedKey + (16 * (i + 1)));
}
SubRoundKey(state, expandedKey); // Final round
// Copy decrypted state to buffer
for (int i = 0; i < 16; i++) {
decryptedMessage[i] = state[i];
}
}
int main() {
cout << "=============================" << endl;
cout << " 128-bit AES Decryption Tool " << endl;
cout << "=============================" << endl;
// Read in the message from message.aes
string msgstr;
ifstream infile;
infile.open("message.aes", ios::in | ios::binary);
if (infile.is_open())
{
getline(infile, msgstr); // The first line of file is the message
cout << "Read in encrypted message from message.aes" << endl;
infile.close();
}
else cout << "Unable to open file";
char * msg = new char[msgstr.size()+1];
strcpy(msg, msgstr.c_str());
int n = strlen((const char*)msg);
unsigned char * encryptedMessage = new unsigned char[n];
for (int i = 0; i < n; i++) {
encryptedMessage[i] = (unsigned char)msg[i];
}
// Free memory
delete[] msg;
// Read in the key
string keystr;
ifstream keyfile;
keyfile.open("keyfile", ios::in | ios::binary);
if (keyfile.is_open())
{
getline(keyfile, keystr); // The first line of file should be the key
cout << "Read in the 128-bit key from keyfile" << endl;
keyfile.close();
}
else cout << "Unable to open file";
istringstream hex_chars_stream(keystr);
unsigned char key[16];
int i = 0;
unsigned int c;
while (hex_chars_stream >> hex >> c)
{
key[i] = c;
i++;
}
unsigned char expandedKey[176];
KeyExpansion(key, expandedKey);
int messageLen = strlen((const char *)encryptedMessage);
unsigned char * decryptedMessage = new unsigned char[messageLen];
for (int i = 0; i < messageLen; i += 16) {
AESDecrypt(encryptedMessage + i, expandedKey, decryptedMessage + i);
}
cout << "Decrypted message in hex:" << endl;
for (int i = 0; i < messageLen; i++) {
cout << hex << (int)decryptedMessage[i];
cout << " ";
}
cout << endl;
cout << "Decrypted message: ";
for (int i = 0; i < messageLen; i++) {
cout << decryptedMessage[i];
}
cout << endl;
return 0;
}