-
Notifications
You must be signed in to change notification settings - Fork 9
/
fileencryption.cpp
244 lines (221 loc) · 4.97 KB
/
fileencryption.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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
#include "fileencryption.h"
#include <QDir>
#include <QFileInfo>
#include <QImage>
#include <qcryptographichash.h>
#include <qdebug.h>
#include <qfile.h>
#include <qthread.h>
FileEncryption::FileEncryption(QObject *parent) : QObject(parent)
{
connect(this, &FileEncryption::start, this, &FileEncryption::startEncryption);
for(int i = 0; i < 16; i++)
{
m_iv.append((uchar)i);
}
}
/**
* @brief 设置输入输出文件路径
* @param strIn 输入文件路径
* @param strOut 输出文件路径
*/
void FileEncryption::setFile(const QString& strIn, const QString& strOut)
{
if(!strIn.isEmpty() && !strOut.isEmpty())
{
this->m_strIn = strIn;
this->m_strOut = strOut;
QFileInfo info(strIn);
m_fileSuffix = info.suffix();
}
}
/**
* @brief 设置使用的密钥
* @param key
*/
void FileEncryption::setKey(const QByteArray &key)
{
this->m_key = key;
}
/**
* @brief 设置加密或者解密
* @param flag true:加密 false:解密
*/
void FileEncryption::setEncryption(bool flag)
{
this->m_encryption = flag;
}
/**
* @brief 设置AES加解密参数
* @param aes
* @param mode
* @param padding
*/
void FileEncryption::setAESParameter(QAESEncryption::Aes aes, QAESEncryption::Mode mode, QAESEncryption::Padding padding)
{
this->m_aes = aes;
this->m_mode = mode;
this->m_padding = padding;
}
/**
* @brief 加解密操作
*/
void FileEncryption::startEncryption()
{
clear();
emit showLog("开始输入原文件!");
if(readFile(m_strIn))
{
emit showLog("文件读取完成!");
if(m_encryption)
{
encryption();
}
else
{
decrypt();
}
if(writeFile(m_strOut))
{
emit showLog("数据写入成功!");
}
clear();
}
else
{
emit showLog("输入文件读取失败!");
}
}
/**
* @brief 加密
*/
void FileEncryption::encryption()
{
QAESEncryption encryption(m_aes, m_mode, m_padding);
emit showLog("开始加密!");
if(m_mode == QAESEncryption::ECB)
{
m_dataOut.append(encryption.encode(m_dataIn, m_key));
}
else
{
m_dataOut.append(encryption.encode(m_dataIn, m_key, m_iv));
}
m_dataOut.insert(0, m_head);
m_dataOut.append(m_md5);
emit showLog("加密完成,开始写入!");
}
/**
* @brief 解密
*/
void FileEncryption::decrypt()
{
QAESEncryption encryption(m_aes, m_mode, m_padding);
emit showLog("开始解密!");
if(m_mode == QAESEncryption::ECB)
{
m_dataOut.append(encryption.decode(m_dataIn, m_key));
}
else
{
m_dataOut.append(encryption.decode(m_dataIn, m_key, m_iv));
}
m_dataOut = encryption.removePadding(m_dataOut); // 移除填充数据
m_dataOut.insert(0, m_head);
emit showLog("解密完成,开始写入!");
check();
}
/**
* @brief 读取文件内容
* @param fileName
*/
bool FileEncryption::readFile(const QString &fileName)
{
QFile file(fileName);
if(file.open(QIODevice::ReadOnly))
{
m_dataIn = file.readAll();
file.close();
dataOperation();
return true;
}
else
{
emit showLog(QString("%1打开失败!").arg(fileName));
return false;
}
}
/**
* @brief 操作数据内容
*/
void FileEncryption::dataOperation()
{
// 获取md5值
if(m_encryption)
{
m_md5 = QCryptographicHash::hash(m_dataIn, QCryptographicHash::Md5).toHex();
}
else // 解密时读取md5值
{
m_md5 = m_dataIn.mid(m_dataIn.count() - 32, 32);
m_dataIn.remove(m_dataIn.count() - 32, 32);
}
// 读取bmo文件头信息
if(m_fileSuffix.compare("bmp", Qt::CaseInsensitive) == 0)
{
m_head = m_dataIn.mid(0, 54); // bmp文件头:共14字节;位图信息头:共40字节;
m_dataIn.remove(0, 54);
}
}
/**
* @brief 使用md5校验文件是否损毁
*/
void FileEncryption::check()
{
QByteArray arr = QCryptographicHash::hash(m_dataOut, QCryptographicHash::Md5).toHex();
if(arr == m_md5)
{
emit showLog("文件未损毁!");
}
else
{
emit showLog("文件存在不同,可能已损毁!");
}
}
/**
* @brief 写文件内容
* @param fileName
* @param data
*/
bool FileEncryption::writeFile(const QString &fileName)
{
QFileInfo info(fileName);
QString filePath = info.absolutePath();
QDir dir;
if(!dir.exists(filePath))
{
dir.mkpath(filePath);
}
QFile file(fileName);
if(file.open(QIODevice::WriteOnly))
{
file.write(m_dataOut);
file.close();
return true;
}
else
{
emit showLog(QString("%1打开失败!").arg(fileName));
return false;
}
}
/**
* @brief 清空数据
*/
void FileEncryption::clear()
{
m_dataIn.clear();
m_dataOut.clear();
m_head.clear();
m_md5.clear();
}