资源简介
实现C#加密各种文件 和解密加密后的文件 完整工程 直接可以编译运行
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Threading;
using System.Security.Cryptography;
using Microsoft.Win32;
namespace ProtectFile
{
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;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 10795 2008-12-16 09:10 文件加密\Backup\ProtectFile\Form1.cs
文件 8291 2008-12-12 13:18 文件加密\Backup\ProtectFile\Form1.Designer.cs
文件 6017 2008-12-12 13:18 文件加密\Backup\ProtectFile\Form1.resx
文件 492 2008-12-11 14:05 文件加密\Backup\ProtectFile\Program.cs
文件 1376 2008-12-11 14:06 文件加密\Backup\ProtectFile\Properties\AssemblyInfo.cs
文件 2872 2008-12-11 14:05 文件加密\Backup\ProtectFile\Properties\Resources.Designer.cs
文件 5612 2008-12-11 14:05 文件加密\Backup\ProtectFile\Properties\Resources.resx
文件 1096 2008-12-11 14:05 文件加密\Backup\ProtectFile\Properties\Settings.Designer.cs
文件 249 2008-12-11 14:05 文件加密\Backup\ProtectFile\Properties\Settings.settings
文件 3888 2008-12-12 13:04 文件加密\Backup\ProtectFile\ProtectFile.csproj
文件 766 2008-12-12 13:04 文件加密\Backup\ProtectFile\加密.ico
文件 923 2008-12-11 14:05 文件加密\Backup\ProtectFile.sln
..A..H. 20480 2009-01-03 14:34 文件加密\Backup\ProtectFile.suo
文件 16384 2017-06-24 14:15 文件加密\ProtectFile\bin\Debug\ProtectFile.exe
文件 38400 2017-06-24 14:15 文件加密\ProtectFile\bin\Debug\ProtectFile.pdb
文件 11608 2017-11-05 11:27 文件加密\ProtectFile\bin\Debug\ProtectFile.vshost.exe
文件 490 2012-06-06 02:06 文件加密\ProtectFile\bin\Debug\ProtectFile.vshost.exe.manifest
文件 766 2008-12-12 13:03 文件加密\ProtectFile\bin\Debug\加密.ico
文件 10795 2008-12-16 09:10 文件加密\ProtectFile\Form1.cs
文件 8291 2008-12-12 13:18 文件加密\ProtectFile\Form1.Designer.cs
文件 6017 2008-12-12 13:18 文件加密\ProtectFile\Form1.resx
文件 1229 2017-06-30 12:45 文件加密\ProtectFile\obj\Debug\DesignTimeResolveAssemblyReferences.cache
文件 6660 2017-06-24 14:15 文件加密\ProtectFile\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 2135 2017-11-05 11:27 文件加密\ProtectFile\obj\Debug\ProtectFile.csproj.FileListAbsolute.txt
文件 902 2017-06-24 14:15 文件加密\ProtectFile\obj\Debug\ProtectFile.csproj.GenerateResource.Cache
文件 16384 2017-06-24 14:15 文件加密\ProtectFile\obj\Debug\ProtectFile.exe
文件 180 2017-06-24 14:15 文件加密\ProtectFile\obj\Debug\ProtectFile.Form1.resources
文件 38400 2017-06-24 14:15 文件加密\ProtectFile\obj\Debug\ProtectFile.pdb
文件 180 2017-06-24 14:15 文件加密\ProtectFile\obj\Debug\ProtectFile.Properties.Resources.resources
文件 4608 2017-06-24 14:15 文件加密\ProtectFile\obj\Debug\TempPE\Properties.Resources.Designer.cs.dll
............此处省略31个文件信息
相关资源
- C# datagridview 与数据源绑定后对数据的
- c#Form窗体增删改操作
- c#红绿灯程序源代码
- ASP.NET/C# +SQL小区收费系统
- VS2010下 C#最小二乘法图形界面及源代
- C#将tif影像转成jpg方法显示保持颜色不
- 学生成绩管理系统C#实现
- C#代码创建Access数据库和表
- C# 全局钩子 ()
- C#:汉王人脸通SDK五获取考勤记录
- C# 调用笔记本摄像头,制作简易监控
- C# 八数码 源码
- C# 矩阵算法
- Emgucv3.0(c#)简单入门
- C# 道格拉斯线压缩算法 Douglas一Pe
- 佳博打印机.net平台下的开发API
- WPF写的一个简单截屏工具
- C# 守护进程的服务
- 漂亮的C#软件启动界面特效源码
- C#通讯录项目学生期末作业+C#.通讯录
- 将一个容器中控件拖到另一个容器中
- c# backgroundworker+process进度条
- C# 解决双击TreeView表里checkbox本身Bug问
- C#版学生管理系统源代码
- C#基于joyGetPos的主动方式手柄控制
- 三层架构实现图书管理系统
- (源代码)C#作为上位机,控制51单片
- C#实现的股票交易模拟系统
- C# modbus浮点数处理
- C# 安全移除USB设备
评论
共有 条评论