Java小程序:超强Java加密程序【加强版】

之前有写了一篇解密的程序,但是后来发现这个程序的加密比较容易被破解,后来使用了相对之前的加密算法复杂一点的加密算法来进行加密,想想还是挺好用的。哈哈哈。

早前代码:http://www.lihuan.com.cn/2016/02/26/1149.html

先前的加密是通过获取的字节异或上用户输入的KEY,但是这种方法获得的加密后数据过于容易解密,后来想了很久,找到了一个相对简单但是又不容易被破解的加密方式。

例如,这里先从文件中获取两个字节A,B。首先,让A=A^B,这样得到加密后的字节A,然后通过B=B^KEY,从而获得加密后的B,然后再将这两个数据写入到磁盘中,如果最后读到的只有一个字节,那么直接用这个字节异或上KEY即可。

解密时,做相反操作,先通过B = B^KEY,从而得到加密前的字节B,然后通过A=A^B,那么A也就还原为原来的A字节,然后再次将这两个字节写入磁盘,如果读到最后只有一个字节,那么直接用这个字节异或上KEY即可。

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
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Scanner;
public class Crazy {
private static Scanner sc = new Scanner(System.in);
private static String filePath = “”;
private static int key = 0;
private static String bombom = “”; //,
private static byte[] keyArr;
private static String basicLock = “”;
private static String basicKey = “91,80,111,119,101,114,32,66,121,32,76,105,72,117,97,110,93,”;
public static void main(String[] args) throws NumberFormatException, IOException {
// TODO Auto-generated method stub
while (true) {
println(“****************************************************”);
println(“*————————————————–*”);
println(“*——–接下来发生的事情有可能出乎你的意料——–*”);
println(“*———————准备开始———————*”);
println(“*————————————————–*”);
println(“****************************************************”);
println(“”);
String tempSC = scanner(“请输入要操作的路径:”);
filePath = tempSC;
File file = getFile(filePath);
if (file.exists()) {
if (file.isDirectory()) {
boolean isEncrypt;
while (true) {
println(“****************************************************”);
println(“*————————————————–*”);
tempSC = scanner(“*————你要进行什么操作(加密/解密)———–*”);
if (“jiami”.equals(tempSC) || “加密”.equals(tempSC)) {
isEncrypt = true;
break;
} else if (“jiemi”.equals(tempSC) || “解密”.equals(tempSC)) {
isEncrypt = false;
break;
} else {
//println(“*********************请重新输入*********************”);
}
}
println(“”);
println(“****************************************************”);
println(“*————————————————–*”);
tempSC = scanner(“*—————–请输入KEY(密钥)——————*”);
bombom = “”;
keyArr = tempSC.getBytes();
key = 0;
for (int i = 0; i < keyArr.length; i++) {
bombom += ((256 – Math.abs(keyArr[i])) ^ 1) + “,”;
key += (256 – Math.abs(keyArr[i]));
}
key = Math.abs(key);
if (isEncrypt) {
encrypt(file);
} else {
decrypt(file);
}
} else {
println(“你输入的是文件路径!”);
}
} else {
println(“路径不存在!”);
}
println(“—————————————————-“);
println(“****************************************************”);
println(“”);
}
}
public static boolean checkFile(BufferedInputStream bis,String checkType) throws IOException {
String sss = “”;
String[] sArr = bombom.split(“,”);
basicLock = “”;
int b;
for (int i = 0; i < basicKey.split(“,”).length; i++) {
if ((b = bis.read()) != –1) {
basicLock += (b + “,”);
} else {
//break;
}
}
if (“encrypt”.equals(checkType)) {
if (basicKey.equals(basicLock)) {
//基础密钥一致,说明是已经经过加密的,因此返回false跳过,不再加密处理
return false;
} else {
//基础密钥不一致
//进行加密
return true;
}
} else if (“decrypt”.equals(checkType)) {
if (basicKey.equals(basicLock)) {
//基础密钥一致
int forNum = bis.read();
if (forNum == –1) {
return false; //跳出
} else {
for (int j = 0; j < forNum; j++) {
if ((b = bis.read()) != –1) {
sss += (b + “,”);
} else {
break;
}
}
if (sss.equals(bombom)) {
return true;
} else {
return false;
}
}
} else {
//基础密钥不一致,说明文件没有经过加密,因此无需进行加密处理,直接返回false跳过
return false;
}
} else {
println(“未知错误!”);
return false;
}
}
public static void encrypt(File file) throws NumberFormatException, IOException {
File[] fileLists = getFileLists(file);
if (fileLists != null) {
for (File f : fileLists) {
if (f.isDirectory()) {
encrypt(f);
} else {
FileInputStream fis = new FileInputStream(f.getPath());
BufferedInputStream bis = new BufferedInputStream(fis);
FileOutputStream fos = new FileOutputStream(f.getPath() + “.lihuan”);
BufferedOutputStream bos = new BufferedOutputStream(fos);
if (checkFile(bis, “encrypt”)) {
bis.close();
int b;
String[] sArr = basicKey.split(“,”);
for (String s : sArr) {
bos.write(Integer.parseInt(s));
}
bos.write(keyArr.length);
sArr = bombom.split(“,”);
for (String s : sArr) {
bos.write(Integer.parseInt(s));
}
fis = new FileInputStream(f.getPath());
bis = new BufferedInputStream(fis);
while ((b = bis.read()) != –1) {
int tempb;
if ((tempb = bis.read()) != –1) {
b = b ^ tempb;
tempb = tempb ^ key;
bos.write(b);
bos.write(tempb);
} else {
b = b ^ key;
bos.write(b);
}
}
bos.close();
bis.close();
File fileCopy = new File(f.getPath() + “.lihuan”);
String filePath = f.getPath();
System.out.println(f.getPath() + “[加密成功]”);
f.delete();
File fileNew = new File(filePath);
fileCopy.renameTo(fileNew);
} else {
System.out.println(f.getPath() + “[未操作]”);
bos.close();
bis.close();
File fileCopy = new File(f.getPath() + “.lihuan”);
fileCopy.delete();
}
}
}
}
}
public static void decrypt(File file) throws NumberFormatException, IOException {
File[] fileLists = getFileLists(file);
if (fileLists != null) {
for (File f : fileLists) {
if (f.isDirectory()) {
decrypt(f);
} else {
FileInputStream fis = new FileInputStream(f.getPath());
BufferedInputStream bis = new BufferedInputStream(fis);
FileOutputStream fos = new FileOutputStream(f.getPath() + “.lihuan”);
BufferedOutputStream bos = new BufferedOutputStream(fos);
if (checkFile(bis, “decrypt”)) {
int b;
while ((b = bis.read()) != –1) {
int tempb;
if ((tempb = bis.read()) != –1) {
tempb = tempb ^ key;
b = b ^ tempb;
bos.write(b);
bos.write(tempb);
} else {
b = b ^ key;
bos.write(b);
}
}
bos.close();
bis.close();
File fileCopy = new File(f.getPath() + “.lihuan”);
String filePath = f.getPath();
println(f.getPath() + “[解密成功]”);
f.delete();
File fileNew = new File(filePath);
fileCopy.renameTo(fileNew);
} else {
println(f.getPath() + “[未操作]”);
bos.close();
bis.close();
File fileCopy = new File(f.getPath() + “.lihuan”);
fileCopy.delete();
}
}
}
}
}
public static File getFile(String filePath) {
File file = new File(filePath);
return file;
}
public static File[] getFileLists(File file) {
File[] fileLists = file.listFiles();
return fileLists;
}
public static String scanner(String message) {
println(message);
String tempStr = sc.nextLine();
if (“exit”.equals(tempStr.toLowerCase()) || “tuichu”.equals(tempStr.toLowerCase()) || “退出”.equals(tempStr.toLowerCase())) {
System.out.println(“程序正在退出……”);
System.exit(0);
} else {
}
return tempStr;
}
public static void print(String str) {
System.out.print(str);
}
public static void println(String str) {
System.out.println(str);
print(“”);
}
}

如发现BUG,请留言反馈给我,谢谢!