服务器之家:专注于VPS、云服务器配置技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - C# - C#实现对文件进行加密保护的示例代码

C#实现对文件进行加密保护的示例代码

2023-06-05 14:35芝麻粒儿 C#

这篇文章主要为大家详细介绍了如何利用C#实现对文件进行加密保护的功能,文中的示例代码讲解详细,对我们学习C#有一定的帮助,感兴趣的小伙伴可以跟随小编一起了解一下

实践过程

效果

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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
        CheckForIllegalCrossThreadCalls = false;
    }
 
    private void Form1_Load(object sender, EventArgs e)
    {
        FileMenu(Application.ExecutablePath + ",0", Application.ExecutablePath);
        string[] str = Environment.GetCommandLineArgs();
        try
        {
            string strFile = "";
            for (int i = 2; i < str.Length; i++)
                strFile += str[i];
            FileInfo FInfo = new FileInfo(strFile);
            if (FInfo.Extension.ToLower() == ".mr")
            {
                textBox1.Text = strFile;
                button2.Enabled = false;
                button3.Enabled = true;
            }
        }
        catch
        {
        }
    }
 
    //选择加密、解密文件
    private void button1_Click(object sender, EventArgs e)
    {
        if (openFileDialog1.ShowDialog() == DialogResult.OK)
        {
            textBox1.Text = openFileDialog1.FileName;
            FileInfo FInfo = new FileInfo(textBox1.Text);
            if (FInfo.Extension.ToLower() == ".mr")
            {
                button2.Enabled = false;
                button3.Enabled = true;
            }
            else
            {
                button2.Enabled = true;
                button3.Enabled = false;
            }
        }
    }
 
    //加密
    private void button2_Click(object sender, EventArgs e)
    {
        if (textBox1.Text != "")
        {
            if (textBox2.Text.Length < 6)
                MessageBox.Show("密码不能小于6位!", "警告", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            else
            {
                EDncrypt myEDncrypt = new EDncrypt(textBox1.Text, textBox2.Text, progressBar1);
                myEDncrypt.StartEncrypt();
                progressBar1.Value = 0;
            }
        }
    }
 
    //解密
    private void button3_Click(object sender, EventArgs e)
    {
        if (textBox1.Text != "")
        {
            if (textBox2.Text.Length < 6)
                MessageBox.Show("密码不能小于6位!", "警告", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            else
            {
                EDncrypt myEDncrypt = new EDncrypt(textBox1.Text, textBox2.Text, progressBar1);
                myEDncrypt.StartDncrypt();
                progressBar1.Value = 0;
            }
        }
    }
 
    //创建快捷菜单
    public static void FileMenu(string strPath, string strName)
    {
        try
        {
            Registry.ClassesRoot.CreateSubKey(".mr");
            RegistryKey RKey1 = Registry.ClassesRoot.OpenSubKey(".mr", true);
            RKey1.SetValue("", "mrfile");
            RKey1.Close();
            Registry.ClassesRoot.CreateSubKey("mrfile");
            RegistryKey RKey2 = Registry.ClassesRoot.OpenSubKey("mrfile", true);
            RKey2.CreateSubKey("DefaultIcon");
            RKey2.CreateSubKey("shell");
            RKey2.Close();
            RegistryKey RKey3 = Registry.ClassesRoot.OpenSubKey("mrfile\\DefaultIcon", true);
            RKey3.SetValue("", strPath);
            RKey3.Close();
            RegistryKey RKey4 = Registry.ClassesRoot.OpenSubKey("mrfile\\shell", true);
            RKey4.CreateSubKey("解密");
            RKey4.Close();
            RegistryKey RKey5 = Registry.ClassesRoot.OpenSubKey("mrfile\\shell\\解密", true);
            RKey5.CreateSubKey("command");
            RKey5.Close();
            RegistryKey RKey6 = Registry.ClassesRoot.OpenSubKey("mrfile\\shell\\解密\\command", true);
            RKey6.SetValue("", strName + " \\F %1");
            RKey6.Close();
        }
        catch
        {
        }
    }
}
 
#region 加密、解密类
 
class EDncrypt
{
    #region 定义全局变量及类对象
 
    private string strFile = "";
    private string strNewFile = "";
    private string strPwd = "";
    private ProgressBar PBar = null;
    private Thread EThread = null;
    private Thread DThread = null;
 
    #endregion
 
    //含参数的构造函数,用来初始化全局变量及对象
    public EDncrypt(string name, string pwd, ProgressBar pb)
    {
        strFile = name;
        strPwd = pwd;
        PBar = pb;
        EThread = new Thread(new ThreadStart(this.myEThread));
        DThread = new Thread(new ThreadStart(this.myDThread));
    }
 
    //文件加密
    private void myEThread()
    {
        byte[] btRKey = new byte[0];
        if (strPwd.Length == 6)
        {
            btRKey = new byte[]
            {
                (byte) strPwd[0], (byte) strPwd[1], (byte) strPwd[2], (byte) strPwd[3], (byte) strPwd[4],
                (byte) strPwd[5], (byte) strPwd[0], (byte) strPwd[1]
            };
        }
 
        if (strPwd.Length == 7)
        {
            btRKey = new byte[]
            {
                (byte) strPwd[0], (byte) strPwd[1], (byte) strPwd[2], (byte) strPwd[3], (byte) strPwd[4],
                (byte) strPwd[5], (byte) strPwd[6], (byte) strPwd[0]
            };
        }
 
        if (strPwd.Length >= 8)
        {
            btRKey = new byte[]
            {
                (byte) strPwd[0], (byte) strPwd[1], (byte) strPwd[2], (byte) strPwd[3], (byte) strPwd[4],
                (byte) strPwd[5], (byte) strPwd[6], (byte) strPwd[7]
            };
        }
 
        FileStream FStream = new FileStream(strFile, FileMode.Open, FileAccess.Read);
        FileStream NewFStream = new FileStream(strFile + ".mr", FileMode.OpenOrCreate, FileAccess.Write);
        NewFStream.SetLength((long) 0);
        byte[] buffer = new byte[0x400];
        int MinNum = 0;
        long length = FStream.Length;
        int MaxNum = (int) (length / ((long) 0x400));
        PBar.Maximum = MaxNum;
        DES myDES = new DESCryptoServiceProvider();
        CryptoStream CStream =
            new CryptoStream(NewFStream, myDES.CreateEncryptor(btRKey, btRKey), CryptoStreamMode.Write);
        while (MinNum < length)
        {
            int count = FStream.Read(buffer, 0, 0x400);
            CStream.Write(buffer, 0, count);
            MinNum += count;
            try
            {
                if (PBar.Value < PBar.Maximum)
                {
                    PBar.Value++;
                }
            }
            catch
            {
            }
        }
 
        CStream.Close();
        NewFStream.Close();
        FStream.Close();
        File.Delete(strFile);
        MessageBox.Show("文件加密成功!", "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
    }
 
    //运行加密线程
    public void StartEncrypt()
    {
        EThread.Start();
    }
 
    //文件解密
    private void myDThread()
    {
        FileStream FStream = null;
        FileStream NewFStream = null;
        CryptoStream CStream = null;
        try
        {
            try
            {
                byte[] btRKey = new byte[0];
                if (strPwd.Length == 6)
                {
                    btRKey = new byte[]
                    {
                        (byte) strPwd[0], (byte) strPwd[1], (byte) strPwd[2], (byte) strPwd[3], (byte) strPwd[4],
                        (byte) strPwd[5], (byte) strPwd[0], (byte) strPwd[1]
                    };
                }
 
                if (strPwd.Length == 7)
                {
                    btRKey = new byte[]
                    {
                        (byte) strPwd[0], (byte) strPwd[1], (byte) strPwd[2], (byte) strPwd[3], (byte) strPwd[4],
                        (byte) strPwd[5], (byte) strPwd[6], (byte) strPwd[0]
                    };
                }
 
                if (strPwd.Length >= 8)
                {
                    btRKey = new byte[]
                    {
                        (byte) strPwd[0], (byte) strPwd[1], (byte) strPwd[2], (byte) strPwd[3], (byte) strPwd[4],
                        (byte) strPwd[5], (byte) strPwd[6], (byte) strPwd[7]
                    };
                }
 
                FStream = new FileStream(strFile, FileMode.Open, FileAccess.Read);
                strNewFile = strFile.Substring(0, strFile.Length - 3);
                NewFStream = new FileStream(strNewFile, FileMode.OpenOrCreate, FileAccess.Write);
                NewFStream.SetLength((long) 0);
                byte[] buffer = new byte[0x400];
                int MinNum = 0;
                long length = FStream.Length;
                int MaxNum = (int) (length / ((long) 0x400));
                PBar.Maximum = MaxNum;
                DES myDES = new DESCryptoServiceProvider();
                CStream = new CryptoStream(NewFStream, myDES.CreateDecryptor(btRKey, btRKey),
                    CryptoStreamMode.Write);
                while (MinNum < length)
                {
                    int count = FStream.Read(buffer, 0, 0x400);
                    CStream.Write(buffer, 0, count);
                    MinNum += count;
                    try
                    {
                        if (PBar.Value < PBar.Maximum)
                        {
                            PBar.Value++;
                        }
                    }
                    catch
                    {
                    }
                }
 
                MessageBox.Show("文件解密成功!", "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
            catch
            {
                MessageBox.Show("文件解密失败!", "错误", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
        finally
        {
            CStream.Close();
            FStream.Close();
            NewFStream.Close();
        }
    }
 
    //运行解密线程
    public void StartDncrypt()
    {
        DThread.Start();
    }
}
 
#endregion
?
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
partial class Form1
{
    /// <summary>
    /// 必需的设计器变量。
    /// </summary>
    private System.ComponentModel.IContainer components = null;
 
    /// <summary>
    /// 清理所有正在使用的资源。
    /// </summary>
    /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
    protected override void Dispose(bool disposing)
    {
        if (disposing && (components != null))
        {
            components.Dispose();
        }
        base.Dispose(disposing);
    }
 
    #region Windows 窗体设计器生成的代码
 
    /// <summary>
    /// 设计器支持所需的方法 - 不要
    /// 使用代码编辑器修改此方法的内容。
    /// </summary>
    private void InitializeComponent()
    {
        this.label1 = new System.Windows.Forms.Label();
        this.textBox1 = new System.Windows.Forms.TextBox();
        this.button1 = new System.Windows.Forms.Button();
        this.label2 = new System.Windows.Forms.Label();
        this.textBox2 = new System.Windows.Forms.TextBox();
        this.label3 = new System.Windows.Forms.Label();
        this.label4 = new System.Windows.Forms.Label();
        this.progressBar1 = new System.Windows.Forms.ProgressBar();
        this.groupBox1 = new System.Windows.Forms.GroupBox();
        this.button2 = new System.Windows.Forms.Button();
        this.button3 = new System.Windows.Forms.Button();
        this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
        this.groupBox1.SuspendLayout();
        this.SuspendLayout();
        //
        // label1
        //
        this.label1.AutoSize = true;
        this.label1.Location = new System.Drawing.Point(6, 17);
        this.label1.Name = "label1";
        this.label1.Size = new System.Drawing.Size(161, 12);
        this.label1.TabIndex = 0;
        this.label1.Text = "请选择要加密或解密的文件:";
        //
        // textBox1
        //
        this.textBox1.Location = new System.Drawing.Point(32, 35);
        this.textBox1.Name = "textBox1";
        this.textBox1.Size = new System.Drawing.Size(263, 21);
        this.textBox1.TabIndex = 1;
        //
        // button1
        //
        this.button1.Location = new System.Drawing.Point(301, 33);
        this.button1.Name = "button1";
        this.button1.Size = new System.Drawing.Size(33, 23);
        this.button1.TabIndex = 2;
        this.button1.Text = "…";
        this.button1.UseVisualStyleBackColor = true;
        this.button1.Click += new System.EventHandler(this.button1_Click);
        //
        // label2
        //
        this.label2.AutoSize = true;
        this.label2.Location = new System.Drawing.Point(7, 71);
        this.label2.Name = "label2";
        this.label2.Size = new System.Drawing.Size(83, 12);
        this.label2.TabIndex = 3;
        this.label2.Text = "加/解密密码:";
        //
        // textBox2
        //
        this.textBox2.Location = new System.Drawing.Point(92, 68);
        this.textBox2.Name = "textBox2";
        this.textBox2.PasswordChar = '*';
        this.textBox2.Size = new System.Drawing.Size(151, 21);
        this.textBox2.TabIndex = 4;
        //
        // label3
        //
        this.label3.AutoSize = true;
        this.label3.ForeColor = System.Drawing.Color.Red;
        this.label3.Location = new System.Drawing.Point(243, 71);
        this.label3.Name = "label3";
        this.label3.Size = new System.Drawing.Size(95, 12);
        this.label3.TabIndex = 5;
        this.label3.Text = "(密码应大于6位)";
        //
        // label4
        //
        this.label4.AutoSize = true;
        this.label4.Location = new System.Drawing.Point(7, 101);
        this.label4.Name = "label4";
        this.label4.Size = new System.Drawing.Size(83, 12);
        this.label4.TabIndex = 6;
        this.label4.Text = "加/解密进度:";
        //
        // progressBar1
        //
        this.progressBar1.Location = new System.Drawing.Point(92, 99);
        this.progressBar1.Name = "progressBar1";
        this.progressBar1.Size = new System.Drawing.Size(242, 18);
        this.progressBar1.TabIndex = 7;
        //
        // groupBox1
        //
        this.groupBox1.Controls.Add(this.label1);
        this.groupBox1.Controls.Add(this.progressBar1);
        this.groupBox1.Controls.Add(this.textBox1);
        this.groupBox1.Controls.Add(this.label4);
        this.groupBox1.Controls.Add(this.button1);
        this.groupBox1.Controls.Add(this.label3);
        this.groupBox1.Controls.Add(this.label2);
        this.groupBox1.Controls.Add(this.textBox2);
        this.groupBox1.Location = new System.Drawing.Point(5, 5);
        this.groupBox1.Name = "groupBox1";
        this.groupBox1.Size = new System.Drawing.Size(342, 123);
        this.groupBox1.TabIndex = 8;
        this.groupBox1.TabStop = false;
        this.groupBox1.Text = "文件加/解密设置";
        //
        // button2
        //
        this.button2.Enabled = false;
        this.button2.Location = new System.Drawing.Point(223, 134);
        this.button2.Name = "button2";
        this.button2.Size = new System.Drawing.Size(59, 27);
        this.button2.TabIndex = 9;
        this.button2.Text = "加密";
        this.button2.UseVisualStyleBackColor = true;
        this.button2.Click += new System.EventHandler(this.button2_Click);
        //
        // button3
        //
        this.button3.Enabled = false;
        this.button3.Location = new System.Drawing.Point(288, 134);
        this.button3.Name = "button3";
        this.button3.Size = new System.Drawing.Size(59, 27);
        this.button3.TabIndex = 9;
        this.button3.Text = "解密";
        this.button3.UseVisualStyleBackColor = true;
        this.button3.Click += new System.EventHandler(this.button3_Click);
        //
        // openFileDialog1
        //
        this.openFileDialog1.FileName = "openFileDialog1";
        //
        // Form1
        //
        this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
        this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
        this.ClientSize = new System.Drawing.Size(353, 167);
        this.Controls.Add(this.button3);
        this.Controls.Add(this.button2);
        this.Controls.Add(this.groupBox1);
        this.MaximizeBox = false;
        this.Name = "Form1";
        this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
        this.Text = "对文件进行加密保护";
        this.Load += new System.EventHandler(this.Form1_Load);
        this.groupBox1.ResumeLayout(false);
        this.groupBox1.PerformLayout();
        this.ResumeLayout(false);
 
    }
 
    #endregion
 
    private System.Windows.Forms.Label label1;
    private System.Windows.Forms.TextBox textBox1;
    private System.Windows.Forms.Button button1;
    private System.Windows.Forms.Label label2;
    private System.Windows.Forms.TextBox textBox2;
    private System.Windows.Forms.Label label3;
    private System.Windows.Forms.Label label4;
    private System.Windows.Forms.ProgressBar progressBar1;
    private System.Windows.Forms.GroupBox groupBox1;
    private System.Windows.Forms.Button button2;
    private System.Windows.Forms.Button button3;
    private System.Windows.Forms.OpenFileDialog openFileDialog1;
}

到此这篇关于C#实现对文件进行加密保护的示例代码的文章就介绍到这了,更多相关C#文件加密内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/qq_27489007/article/details/128436713

 

延伸 · 阅读

精彩推荐
  • C#C#程序加密工具.Net Reactor详细教程

    C#程序加密工具.Net Reactor详细教程

    .Net Reacto加密工具是一款强大的 .NET 代码保护和授权管理系统,安全可靠、简单易用,主要用来帮助开发人员保护他们的 .NET 软件产品,本文给大家详细介...

    香煎三文鱼3852022-12-29
  • C#C#实现求一组数据众数的方法

    C#实现求一组数据众数的方法

    这篇文章主要介绍了C#实现求一组数据众数的方法,这里以浮点型数组为例分析了C#求众数的算法原理与实现技巧,具有一定参考借鉴价值,需要的朋友可以参考...

    北风其凉12412021-10-11
  • C#c# 实现雪花分形的示例

    c# 实现雪花分形的示例

    这篇文章主要介绍了c# 实现雪花分形的示例,帮助大家更好的利用c#绘制图像,感兴趣的朋友可以了解下...

    黑衫老腰8162022-10-11
  • C#C#跨平台开发之使用C/C++生成的动态链接库

    C#跨平台开发之使用C/C++生成的动态链接库

    这篇文章介绍了C#跨平台开发之使用C/C++生成的动态链接库,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧...

    痴者工良7782022-12-20
  • C#C#中的 == 和equals()区别浅析

    C#中的 == 和equals()区别浅析

    这篇文章主要介绍了C#中的 == 和equals()的区别,对不同点进行了阐述,感兴趣的小伙伴们可以参考一下...

    C#教程网10632021-11-01
  • C#C#中多线程ManualResetEvent 与 AutoResetEvent 区别

    C#中多线程ManualResetEvent 与 AutoResetEvent 区别

    这篇文章主要介绍了C#中ManualResetEvent 与 AutoResetEvent 区别,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋...

    千浔8962022-09-26
  • C#c#多线程通信之委托事件

    c#多线程通信之委托事件

    这篇文章主要介绍了c#多线程通信之委托事件,对多线程感兴趣的同学可以参考下...

    richerg8510382022-11-10
  • C#C#面向对象设计原则之单一职责原则

    C#面向对象设计原则之单一职责原则

    这篇文章介绍了C#面向对象设计原则之单一职责原则,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧...

    .NET开发菜鸟11052023-02-16