-
Notifications
You must be signed in to change notification settings - Fork 0
/
caesar.c
258 lines (248 loc) · 6.41 KB
/
caesar.c
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <io.h>
#include <string.h>
#include <fcntl.h>
#include <sys/stat.h>
#include "caesar.h"
/**
* @brief 自定义字符集
*
*/
const unsigned char character_set[] = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~";
/**
* @brief 自定义字符集的长度
*
*/
const int CHARSET_LENGTH = sizeof(character_set) - 1;
/**
* @brief 获取某个字符的内部编码
*
* @param ch 字符
* @return 内部编码,如果不含此字符,则返回 -1
*/
int get_char_code(unsigned char ch)
{
for (int i = 0; character_set[i] != '\0'; i++)
{
if (character_set[i] == ch)
{
return i;
}
}
return -1;
}
/**
* @brief 从控制台获取用户输入的凯撒密码,最大值为 MAX_PASSOWRD_LEN
*
* @return int
*/
int get_password()
{
char passwd[MAX_PASSOWRD_LEN + 1];
int int_passwd = 0;
while (int_passwd == 0)
{
printf("请输入密码:");
for (int i = 0; i < MAX_PASSOWRD_LEN; i++)
{
passwd[i] = getch();
if (passwd[i] == '\n' || passwd[i] == '\r')
{
printf("\r\n");
// 末尾添加结束符
passwd[i + 1] = '\0';
break;
}
else
{
printf("*");
}
};
int_passwd = atoi(passwd);
if (int_passwd == 0)
{
fprintf(stderr, "输入的密码无效\n");
}
}
return int_passwd;
}
/**
* @brief 获取文件尺寸
*
* @param filename
* @return int
*/
int get_file_size(const char *filename)
{
struct stat buf;
int fd = open(filename, _O_RDONLY);
if (stat(filename, &buf) > -1)
{
close(fd);
printf("%s 文件的尺寸为: %d\n", filename, buf.st_size);
return buf.st_size;
}
else
{
close(fd);
fprintf(stderr, "错误:%s\n", strerror(errno));
return -1;
}
}
/**
* @brief 加密普通文本
*
* @param src 源字符串
* @param dst 目标保存位置
* @param key 口令,最大值为 CHARSET_LENGTH-1
*/
void encrypt_text(const char *src, char *dst, int key)
{
int i;
key = key % CHARSET_LENGTH;
for (i = 0; src[i] != '\0'; i++)
{
int code = get_char_code(src[i]);
if (code != -1)
{
dst[i] = character_set[(code + key) % CHARSET_LENGTH];
}
else
{
dst[i] = src[i];
}
}
dst[i] = '\0';
}
/**
* @brief 解密普通文本
*
* @param src 密码字符串
* @param dst 目标保存位置
* @param key 口令,最大值为 CHARSET_LENGTH-1
*/
void decrypt_text(const char *src, char *dst, int key)
{
int i;
key = key % CHARSET_LENGTH;
for (i = 0; src[i] != '\0'; i++)
{
int code = get_char_code(src[i]);
if (code != -1)
{
dst[i] = character_set[(code - key) % CHARSET_LENGTH];
}
else
{
dst[i] = src[i];
}
}
dst[i] = '\0';
}
/**
* @brief 判断文件权限
*
* @param src_filename 源文件,需要存在且具有读权限
* @param dst_filename 目标文件,不存在或具有写权限
* @return int
*/
int verify_permissions(const char *src_filename, const char *dst_filename)
{
if (access(src_filename, Exist_OK) != 0)
{
fprintf(stderr, "\"%s\"文件不存在\n", src_filename);
return -1;
}
if (access(src_filename, Read_OK) != 0)
{
fprintf(stderr, "没有对\"%s\"文件的读取权限\n", src_filename);
return -1;
}
// 判断文件是否存在
if (access(dst_filename, Exist_OK) == 0)
{
fprintf(stderr, "\"%s\"文件存在,将进行覆盖\n", dst_filename);
if (access(dst_filename, Write_OK) != 0)
{
fprintf(stderr, "没有对\"%s\"文件的写入权限\n", dst_filename);
return -1;
}
}
return 0;
}
/**
* @brief 对文件进行凯撒加密
*
* @param src_filename 源文件名,需要存在且具有读权限
* @param dst_filename 目标文件名,不存在或具有写权限
* @param key 口令
*/
void encrypt_file(const char *src_filename, const char *dst_filename, int key)
{
key = key % 256;
if (verify_permissions(src_filename, dst_filename) == 0)
{
// 读取并对文件进行加密
// 获取文件尺寸
int src_file_size = get_file_size(src_filename);
// 开辟内存
unsigned char *text = (unsigned char *)malloc(src_file_size + 1);
int read_num;
// 打开源文件
FILE *src_file = fopen(src_filename, "rb");
read_num = fread(text, sizeof(unsigned char), src_file_size, src_file);
// 关闭源文件
fclose(src_file);
// 加密
for (int i = 0; i < src_file_size; i++)
{
text[i] = (text[i] + key) % 256;
}
// 输出到源文件
FILE *dst_file = fopen(dst_filename, "wb");
fwrite(text, sizeof(unsigned char), src_file_size, dst_file);
fflush(dst_file);
// 关闭目标文件
fclose(dst_file);
free(text);
printf("加密完成!\n");
}
}
/**
* @brief 对文件进行凯撒加密解密
*
* @param src_filename 源文件名,需要存在且具有读权限
* @param dst_filename 目标文件名,不存在或具有写权限
* @param key 口令
*/
void decrypt_file(const char *src_filename, const char *dst_filename, int key)
{
key = key % 256;
if (verify_permissions(src_filename, dst_filename) == 0)
{
// 打开源文件
FILE *src_file = fopen(src_filename, "rb");
// 读取并对文件进行加密
// 获取文件尺寸
int src_file_size = get_file_size(src_filename);
// 开辟内存
unsigned char *text = (unsigned char *)malloc(src_file_size + 1);
fread(text, sizeof(unsigned char), src_file_size, src_file);
// 关闭源文件
fclose(src_file);
// 解密
for (int i = 0; i < src_file_size; i++)
{
text[i] = (text[i] - key) % 256;
}
// 输出到源文件
FILE *dst_file = fopen(dst_filename, "wb");
fwrite(text, sizeof(unsigned char), src_file_size, dst_file);
free(text);
// 关闭目标文件
fclose(dst_file);
printf("解密完成!");
}
}