-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAESFileEncryption.cpp
More file actions
229 lines (173 loc) · 6.55 KB
/
AESFileEncryption.cpp
File metadata and controls
229 lines (173 loc) · 6.55 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
225
226
227
228
229
#include <iostream>
#include <fstream>
#include <string>
#include <cryptopp/aes.h>
#include <cryptopp/modes.h>
#include <cryptopp/filters.h>
#include <cryptopp/files.h>
#include <cryptopp/osrng.h>
class AESFileEncryption
{
public:
void EncryptFile(const std::string inputFilePath, const std::string outputFilePath, const char* key);
void DecryptFile(const std::string inputFilePath, const std::string outputFilePath, const char* key);
private:
CryptoPP::SecByteBlock GenerateRandomIV();
};
CryptoPP::SecByteBlock AESFileEncryption::GenerateRandomIV(){
// Generate a random IV
CryptoPP::AutoSeededRandomPool prng;
CryptoPP::SecByteBlock iv(CryptoPP::AES::BLOCKSIZE);
prng.GenerateBlock(iv, iv.size());
return iv;
}
void AESFileEncryption::EncryptFile(const std::string inputFilePath, const std::string outputFilePath, const char* key)
{
CryptoPP::SecByteBlock iv = GenerateRandomIV();
// Write the IV to the output file
std::ofstream outputFile(outputFilePath, std::ios::binary);
if (!outputFile) {
std::cerr << "Error: Could not open output file" << std::endl;
return;
}
outputFile.write(reinterpret_cast<const char*>(iv.data()), iv.size());
// Initialize encryption objects
CryptoPP::AES::Encryption aesEncryption(
reinterpret_cast<const CryptoPP::byte*>(key),
CryptoPP::AES::DEFAULT_KEYLENGTH
);
CryptoPP::CBC_Mode_ExternalCipher::Encryption cbcEncryption(
aesEncryption,
iv
);
// Open input file
std::ifstream inputFile(inputFilePath, std::ios::binary);
if (!inputFile)
{
std::cerr << "Error: Could not open input file" << std::endl;
return;
}
// Copy input file to output file, encrypting as we go
CryptoPP::FileSource(
inputFile,
true,
new CryptoPP::StreamTransformationFilter(
cbcEncryption,
new CryptoPP::FileSink(
outputFile
)
)
);
}
void AESFileEncryption::DecryptFile(const std::string inputFilePath, const std::string outputFilePath, const char* key){
// Read the IV from the input file
CryptoPP::SecByteBlock iv(CryptoPP::AES::BLOCKSIZE);
std::ifstream inputFile(inputFilePath, std::ios::binary);
if (!inputFile) {
std::cerr << "Error: Could not open input file" << std::endl;
return;
}
inputFile.read(reinterpret_cast<char*>(iv.data()), iv.size());
// Initialize decryption objects
CryptoPP::AES::Decryption aesDecryption(
reinterpret_cast<const CryptoPP::byte*>(key),
CryptoPP::AES::DEFAULT_KEYLENGTH
);
CryptoPP::CBC_Mode_ExternalCipher::Decryption cbcDecryption(
aesDecryption,
iv
);
// Open output file
std::ofstream outputFile(outputFilePath, std::ios::binary);
if (!outputFile)
{
inputFile.close();
std::cerr << "Error: Could not open output file" << std::endl;
return;
}
// Copy input file to output file, decrypting as we go
CryptoPP::FileSource(
inputFile,
true,
new CryptoPP::StreamTransformationFilter(
cbcDecryption,
new CryptoPP::FileSink(
outputFile
)
)
);
}
int main(int argc, char* argv[])
{
// read in command line arguments
// if first command line argument is -e, encrypt
// if first command line argument is -d, decrypt
// if first command line argument is -h, print help
// if first command line argument is -v, print version
// ideas: key, input file, output file, all, status, config, log, time
// else print help
// if no command line arguments, print help
// Strings containing returned info
std::string helpInfo = "Help: \n"
"Usage: crypto-manager [OPTION]... [FILE]...\n"
"Encrypt or decrypt FILE using AES encryption.\n"
"\n"
" -e, --encrypt\t\tencrypt FILE\n"
" -d, --decrypt\t\tdecrypt FILE\n"
" -h, --help\t\tprint this help message and exit\n"
" -v, --version\t\tprint version and exit\n"
"\n"
"Report bugs to <" "email" ">.";
std::string versionInfo = "Version: 0.1.0";
AESFileEncryption aesEncryption;
if (argc > 1) {
std::string firstArg = argv[1];
if (firstArg == "-e") {
std::string key;
std::string inputFilePath;
std::cout << "Enter input file name to encrypt: ";
std::cin >> inputFilePath;
std::string outputFilePath;
std::cout << "Enter output file path for the encrypted key: ";
std::cin >> outputFilePath;
//check if file exists
std::ifstream inputFile(inputFilePath);
if (!inputFile) {
std::cerr << "Error: Could not open input file" << std::endl;
return 1;
}
inputFile.close();
std::cout << "File exists" << std::endl;
std::cout << "Enter encryption key: ";
std::cin >> key;
std::cout << "Encrypting " << inputFilePath << std::endl;
aesEncryption.EncryptFile(inputFilePath, outputFilePath, key.c_str());
} else if (firstArg == "-d") {
//take in file name and key
std::string key;
std::string inputFilePath;
std::string outputFilePath;
std::cout << "Enter input file name to decrypt: ";
std::cin >> inputFilePath;
std::cout << "Enter encryption key: ";
std::cin >> key;
std::cout << "Enter output file path for the decrypted key: ";
std::cin >> outputFilePath;
std::cout << "Decrypting" << inputFilePath << std::endl;
aesEncryption.DecryptFile(inputFilePath, outputFilePath, key.c_str());
} else if (firstArg == "-h") {
std::cout << helpInfo << std::endl;
} else if (firstArg == "-v") {
std::cout << versionInfo << std::endl;
} else {
std::cout << "Invalid command line argument; \nuse crypto-manager -h for help" << std::endl;
}
} else {
std::cout << "No command line arguments; \nuse crypto-manager -h for help" << std::endl;
}
return 0;
}
//TODO - Add comments
//TODO - Add error handling
//TODO - Add command line arguments
//TODO - Add file metadata (e.g. file name, file size, etc.)