-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathibunker.cpp
162 lines (139 loc) · 5.31 KB
/
ibunker.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
/*
* Title: iBunker
* Version: 0.2.1
* Author: Paulo Muniz
* GitHub: https://github.com/paulomunizdev/iBunker
* Description: iBunker is a command-line tool for encrypting and decrypting files using 256-bit keys.
*/
#include <iostream>
#include <fstream>
#include <cryptopp/aes.h>
#include <cryptopp/modes.h>
#include <cryptopp/filters.h>
#include <cryptopp/osrng.h>
#include <cryptopp/hex.h>
#include <sstream>
// Function to generate a strong AES key
/*
* @brief Function to generate a strong AES key.
* @return std::string The generated AES key in hexadecimal format.
*/
std::string GenerateAESKey() {
const int keyLength = 32; // Key size and bytes (256 bits)
CryptoPP::AutoSeededRandomPool rng;
CryptoPP::SecByteBlock key(keyLength);
rng.GenerateBlock(key, key.size());
// Convert the key to a hexadecimal string
std::string hexKey;
CryptoPP::HexEncoder encoder(new CryptoPP::StringSink(hexKey));
encoder.Put(key, key.size());
encoder.MessageEnd();
return hexKey;
}
// Function to encrypt using AES
/*
* @brief Function to encrypt a plaintext using AES.
* @param plaintext The plaintext to be encrypted.
* @param key The AES key used for encryption.
* @return std::string The resulting ciphertext.
*/
std::string EncryptAES(const std::string& plaintext, const std::string& key) {
std::string ciphertext;
// AES encryption setup
CryptoPP::AES::Encryption aesEncryption((CryptoPP::byte*)key.c_str(), CryptoPP::AES::DEFAULT_KEYLENGTH);
CryptoPP::CBC_Mode_ExternalCipher::Encryption cbcEncryption(aesEncryption, (CryptoPP::byte*)key.c_str());
// Encryption process
CryptoPP::StringSource(plaintext, true,
new CryptoPP::StreamTransformationFilter(cbcEncryption,
new CryptoPP::StringSink(ciphertext)
)
);
return ciphertext;
}
// Function to decrypt using AES
/*
* @brief Function to decrypt a ciphertext using AES.
* @param ciphertext The ciphertext to be decrypted.
* @param key The AES key usesed for decryption.
* @return std::string The resulting decrypted plaintext.
*/
std::string DecryptAES(const std::string& ciphertext, const std::string& key) {
std::string decryptedtext;
// AES decryption setup
CryptoPP::AES::Decryption aesDecryption((CryptoPP::byte*)key.c_str(), CryptoPP::AES::DEFAULT_KEYLENGTH);
CryptoPP::CBC_Mode_ExternalCipher::Decryption cbcDecryption(aesDecryption, (CryptoPP::byte*)key.c_str());
try {
// Decryption process
CryptoPP::StringSource(ciphertext, true,
new CryptoPP::StreamTransformationFilter(cbcDecryption,
new CryptoPP::StringSink(decryptedtext)
)
);
} catch (const CryptoPP::InvalidCiphertext& e) {
// Handle invalid ciphertext (e.g., incorrect key)
std::cerr << "Decryption failed (invalid key)\n";
decryptedtext = "Decryption failed (invalid key)";
}
return decryptedtext;
}
// Function to display the help message
/*
* @brief Function to display the help message.
*/
void DisplayHelp() {
std::cout << "Usage: ./ibunker <encrypt/decrypt> <input_file> <output_file> <key_file>\n";
std::cout << "Available commands:\n";
std::cout << " encrypt: Encrypts the input file and saves the key to the specified file.\n";
std::cout << " decrypt: Decrypts the input file using the key from the specified file.\n";
std::cout << "\n";
std::cout << "iBunker\n";
std::cout << "Version: 0.2.1\n";
std::cout << "Author: Paulo Muniz\n";
std::cout << "GitHub: https://github.com/paulomunizdev/iBunker\n";
std::cout << "Description: This program provides AES-256 encryption and decryption for files.\n";
}
/**
* @brief Main function to handle program execution.
*
* @param argc Number of command-line arguments.
* @param argv Array of command-line arguments.
* @return int Exit code.
*/
int main(int argc, char* argv[]) {
if (argc != 5 && argc != 6) {
DisplayHelp();
return 1;
}
std::string mode = argv[1]; // Get operation mode (encrypt/decrypt)
std::string inputFile = argv[2]; // Get input file name
std::string outputFile = argv[3]; // Get output file name
std::string keyFile = argv[4]; // Get key file name
std::string key; // Variable to store AES key
// Read data from input file
std::ifstream input(inputFile, std::ios::binary);
if (!input) {
std::cerr << "Error opening input file.\n";
return 1;
}
// Read plaintext from input file
std::string plaintext((std::istreambuf_iterator<char>(input)), std::istreambuf_iterator<char>());
input.close();
std::string result;
if (mode == "encrypt") {
// Encrypt plaintext using AES
result = EncryptAES(plaintext, key);
} else if (mode == "decrypt") {
// Decrypt ciphertext using AES
result = DecryptAES(plaintext, key);
}
// Write result to output file
std::ofstream output(outputFile, std::ios::binary);
if (!output) {
std::cerr << "Error opening output file.\n";
return 1;
}
output << result;
output.close();
std::cout << "Result successfully saved to file '" << outputFile << "'.\n";
return 0;
}