Skip to content

Commit 565a90a

Browse files
author
Twilight-Dream-Of-Magic
committed
Rename this folder (2018-6-21)
1 parent 287ec34 commit 565a90a

File tree

5 files changed

+89
-2
lines changed

5 files changed

+89
-2
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
README
2+
3+
Chinese:
4+
虽然,我发布了这个(Test Beta 3.1)版本的程序,但是,它不兼容使用旧版本的加密算法生成的加密文件,然后把它解密正确。所以,新版本的程序它不使用旧版本的加密算法和解密算法。现在你有2种(加密和解密)算法的文件密码锁了。我希望,你们喜欢这一次程序升级。
5+
当然,现在开发的这个程序(CUI_EODF 或 GUI_EODF),运行的平台是Microsoft Windows系统。
6+
如果,你们想要我开发这个程序的Linux版本 。
7+
请尽量可能的帮助我的开发,请在我的github网站空间上留言。谢谢你们的支持
8+
并且,程序从Beta3.0版本,替换升级到测试的 Beta 3.1版本的变化比较大。
9+
作者本人(Twilight-Dream-Of-Magic)已经试验成功,新的加密和解密的核心算法,对于单字节文件流数据和密钥之间,来进行处理计算,程序变得比较有用和表现很好。
10+
更新后,被保护的文件的安全性提高一些,被处理文件的密文数据信息更多了。不过,文件的处理速度还是很慢。
11+
12+
English:
13+
Although, I have released this (Beta 3.1) version of the program, but it is not compatible with the old version of the encryption algorithm generated encrypted files, and then decrypt it correctly. Therefore, the new version of the program it does not use the old version of the encryption algorithm and decryption algorithm. Now you have 2 kinds of (encryption and decryption) algorithm of the file password lock. I hope you like this one time program upgrade.
14+
Of course, the program that is now developed (CUI_EODF or GUI_EODF) is running on a Microsoft Windows system.
15+
If you want me to develop the Linux version of this program.
16+
Please try your best to help me with the development, please leave a message on my GitHub website space. Thank you for your support.
17+
Also, the program changes from the Beta3.0 version to the Beta 3.1 version, which is upgraded to Beta.
18+
The author himself (Twilight-dream-magic) has successfully experimented with the new encryption and decryption core algorithm for processing computations between Single-byte file stream data and keys, and the program becomes more useful and well behaved.
19+
After the update, the security of the protected file improved a little more, the encrypted data of the file processed more information. However, the file processing speed is still very slow.
20+
21+
22+
This My File Encryption Core Function
23+
24+
Logical method
25+
26+
Use Key
27+
28+
Data /= Key
29+
Data += Key
30+
Data *= Key
31+
Data -= Key
32+
33+
Use Key2
34+
35+
Data *= Key2
36+
Data -= Key2
37+
Data /= Key2
38+
Data += Key2
39+
40+
Use Key3
41+
42+
Data -= Key3
43+
Data /= Key3
44+
Data += Key3
45+
Data *= Key3
46+
47+
Use Key4
48+
49+
Data += Key4
50+
Data *= Key4
51+
Data -= Key4
52+
Data /= Key4
53+
54+
55+
56+
This My File Decryption Core Function
57+
58+
Logical method
59+
60+
Use Key
61+
62+
Data /= Key
63+
Data -= Key
64+
Data *= Key
65+
Data += Key
66+
67+
Use Key2
68+
69+
Data *= Key
70+
Data += Key
71+
Data /= Key
72+
Data -= Key
73+
74+
Use Key3
75+
76+
Data += Key
77+
Data /= Key
78+
Data -= Key
79+
Data *= Key
80+
81+
Use Key4
82+
83+
Data -= Key
84+
Data *= Key
85+
Data += Key
86+
Data /= Key
87+

[Encrypt_Or_Decrypt_File]-Source-Code/Test-Version/Beta-Version3.1/Compile-Test-EODF_3.1.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ Echo "---------- Code Compile Start ----------"
1414
:: -fexec-charset=GB2312
1515
g++.exe -O2 -c ".\\Main_EODF3-1_By_TDOM.cpp" -o "..\\..\\..\\Test_Binary\\Beta-Vesion3.1\\CUI_EncryptDecryptFile_TestVersion3-1.objective-binary"
1616
:: g++.exe -finput-charset=UTF-8
17-
g++.exe -shared "..\\..\\..\\Test_Binary\\Beta-Vesion3.1\\CUI_EncryptDecryptFile_TestVersion3-1.objective-binary" -o "..\\..\\..\\Test_Binary\\Beta-Vesion3.1\\CUI_EncryptDecryptFile_TestVersion3-1.exe"
18-
g++.exe -static "..\\..\\..\\Test_Binary\\Beta-Vesion3.1\\CUI_EncryptDecryptFile_TestVersion3-1.objective-binary" -o "..\\..\\..\\Test_Binary\\Beta-Vesion3.1\\CUI_EncryptDecryptFile_TestVersion3-1_StaticLink.exe"
17+
g++.exe -shared "..\\..\\..\\Test_Binary\\Beta-Version3.1\\CUI_EncryptDecryptFile_TestVersion3-1.objective-binary" -o "..\\..\\..\\Test_Binary\\Beta-Vesion3.1\\CUI_EncryptDecryptFile_TestVersion3-1.exe"
18+
g++.exe -static "..\\..\\..\\Test_Binary\\Beta-Version3.1\\CUI_EncryptDecryptFile_TestVersion3-1.objective-binary" -o "..\\..\\..\\Test_Binary\\Beta-Vesion3.1\\CUI_EncryptDecryptFile_TestVersion3-1_StaticLink.exe"
1919
Echo "---------- Code Compile End ----------"
2020
Pause
2121
Cls

0 commit comments

Comments
 (0)