forked from ceceww/aes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
encrypt.cpp
227 lines (180 loc) · 5.85 KB
/
encrypt.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
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
225
226
227
/* encrypt.cpp
* Performs encryption using AES 128-bit
* @author Cecelia Wisniewska
*/
#include <iostream>
#include <cstring>
#include <fstream>
#include <sstream>
#include "structures.h"
using namespace std;
/* Serves as the initial round during encryption
* AddRoundKey is simply an XOR of a 128-bit block with the 128-bit key.
*/
void AddRoundKey(unsigned char * state, unsigned char * roundKey) {
for (int i = 0; i < 16; i++) {
state[i] ^= roundKey[i];
}
}
/* Perform substitution to each of the 16 bytes
* Uses S-box as lookup table
*/
void SubBytes(unsigned char * state) {
for (int i = 0; i < 16; i++) {
state[i] = s[state[i]];
}
}
// Shift left, adds diffusion
void ShiftRows(unsigned char * state) {
unsigned char tmp[16];
/* Column 1 */
tmp[0] = state[0];
tmp[1] = state[5];
tmp[2] = state[10];
tmp[3] = state[15];
/* Column 2 */
tmp[4] = state[4];
tmp[5] = state[9];
tmp[6] = state[14];
tmp[7] = state[3];
/* Column 3 */
tmp[8] = state[8];
tmp[9] = state[13];
tmp[10] = state[2];
tmp[11] = state[7];
/* Column 4 */
tmp[12] = state[12];
tmp[13] = state[1];
tmp[14] = state[6];
tmp[15] = state[11];
for (int i = 0; i < 16; i++) {
state[i] = tmp[i];
}
}
/* MixColumns uses mul2, mul3 look-up tables
* Source of diffusion
*/
void MixColumns(unsigned char * state) {
unsigned char tmp[16];
tmp[0] = (unsigned char) mul2[state[0]] ^ mul3[state[1]] ^ state[2] ^ state[3];
tmp[1] = (unsigned char) state[0] ^ mul2[state[1]] ^ mul3[state[2]] ^ state[3];
tmp[2] = (unsigned char) state[0] ^ state[1] ^ mul2[state[2]] ^ mul3[state[3]];
tmp[3] = (unsigned char) mul3[state[0]] ^ state[1] ^ state[2] ^ mul2[state[3]];
tmp[4] = (unsigned char)mul2[state[4]] ^ mul3[state[5]] ^ state[6] ^ state[7];
tmp[5] = (unsigned char)state[4] ^ mul2[state[5]] ^ mul3[state[6]] ^ state[7];
tmp[6] = (unsigned char)state[4] ^ state[5] ^ mul2[state[6]] ^ mul3[state[7]];
tmp[7] = (unsigned char)mul3[state[4]] ^ state[5] ^ state[6] ^ mul2[state[7]];
tmp[8] = (unsigned char)mul2[state[8]] ^ mul3[state[9]] ^ state[10] ^ state[11];
tmp[9] = (unsigned char)state[8] ^ mul2[state[9]] ^ mul3[state[10]] ^ state[11];
tmp[10] = (unsigned char)state[8] ^ state[9] ^ mul2[state[10]] ^ mul3[state[11]];
tmp[11] = (unsigned char)mul3[state[8]] ^ state[9] ^ state[10] ^ mul2[state[11]];
tmp[12] = (unsigned char)mul2[state[12]] ^ mul3[state[13]] ^ state[14] ^ state[15];
tmp[13] = (unsigned char)state[12] ^ mul2[state[13]] ^ mul3[state[14]] ^ state[15];
tmp[14] = (unsigned char)state[12] ^ state[13] ^ mul2[state[14]] ^ mul3[state[15]];
tmp[15] = (unsigned char)mul3[state[12]] ^ state[13] ^ state[14] ^ mul2[state[15]];
for (int i = 0; i < 16; i++) {
state[i] = tmp[i];
}
}
/* Each round operates on 128 bits at a time
* The number of rounds is defined in AESEncrypt()
*/
void Round(unsigned char * state, unsigned char * key) {
SubBytes(state);
ShiftRows(state);
MixColumns(state);
AddRoundKey(state, key);
}
// Same as Round() except it doesn't mix columns
void FinalRound(unsigned char * state, unsigned char * key) {
SubBytes(state);
ShiftRows(state);
AddRoundKey(state, key);
}
/* The AES encryption function
* Organizes the confusion and diffusion steps into one function
*/
void AESEncrypt(unsigned char * message, unsigned char * expandedKey, unsigned char * encryptedMessage) {
unsigned char state[16]; // Stores the first 16 bytes of original message
for (int i = 0; i < 16; i++) {
state[i] = message[i];
}
int numberOfRounds = 9;
AddRoundKey(state, expandedKey); // Initial round
for (int i = 0; i < numberOfRounds; i++) {
Round(state, expandedKey + (16 * (i+1)));
}
FinalRound(state, expandedKey + 160);
// Copy encrypted state to buffer
for (int i = 0; i < 16; i++) {
encryptedMessage[i] = state[i];
}
}
int main() {
cout << "=============================" << endl;
cout << " 128-bit AES Encryption Tool " << endl;
cout << "=============================" << endl;
char message[1024];
cout << "Enter the message to encrypt: ";
cin.getline(message, sizeof(message));
cout << message << endl;
// Pad message to 16 bytes
int originalLen = strlen((const char *)message);
int paddedMessageLen = originalLen;
if ((paddedMessageLen % 16) != 0) {
paddedMessageLen = (paddedMessageLen / 16 + 1) * 16;
}
unsigned char * paddedMessage = new unsigned char[paddedMessageLen];
for (int i = 0; i < paddedMessageLen; i++) {
if (i >= originalLen) {
paddedMessage[i] = 0;
}
else {
paddedMessage[i] = message[i];
}
}
unsigned char * encryptedMessage = new unsigned char[paddedMessageLen];
string str;
ifstream infile;
infile.open("keyfile", ios::in | ios::binary);
if (infile.is_open())
{
getline(infile, str); // The first line of file should be the key
infile.close();
}
else cout << "Unable to open file";
istringstream hex_chars_stream(str);
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);
for (int i = 0; i < paddedMessageLen; i += 16) {
AESEncrypt(paddedMessage+i, expandedKey, encryptedMessage+i);
}
cout << "Encrypted message in hex:" << endl;
for (int i = 0; i < paddedMessageLen; i++) {
cout << hex << (int) encryptedMessage[i];
cout << " ";
}
cout << endl;
// Write the encrypted string out to file "message.aes"
ofstream outfile;
outfile.open("message.aes", ios::out | ios::binary);
if (outfile.is_open())
{
outfile << encryptedMessage;
outfile.close();
cout << "Wrote encrypted message to file message.aes" << endl;
}
else cout << "Unable to open file";
// Free memory
delete[] paddedMessage;
delete[] encryptedMessage;
return 0;
}