網(wǎng)站首頁 編程語言 正文
實踐過程
效果
代碼
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;
}
}
}
//創(chuàng)建快捷菜單
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
//含參數(shù)的構(gòu)造函數(shù),用來初始化全局變量及對象
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);
}
//運(yùn)行加密線程
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();
}
}
//運(yùn)行解密線程
public void StartDncrypt()
{
DThread.Start();
}
}
#endregion
partial class Form1
{
/// <summary>
/// 必需的設(shè)計器變量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的資源。
/// </summary>
/// <param name="disposing">如果應(yīng)釋放托管資源,為 true;否則為 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗體設(shè)計器生成的代碼
/// <summary>
/// 設(shè)計器支持所需的方法 - 不要
/// 使用代碼編輯器修改此方法的內(nèi)容。
/// </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 = "(密碼應(yīng)大于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 = "加/解密進(jìn)度:";
//
// 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 = "文件加/解密設(shè)置";
//
// 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 = "對文件進(jìn)行加密保護(hù)";
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;
}
原文鏈接:https://blog.csdn.net/qq_27489007/article/details/128436713
相關(guān)推薦
- 2022-05-19 Python合并重疊矩形框_python
- 2021-12-04 使用Go實現(xiàn)TLS服務(wù)器和客戶端的示例_Golang
- 2023-02-14 一文帶你搞懂Golang依賴注入的設(shè)計與實現(xiàn)_Golang
- 2023-07-05 讓Linux中的SCP遠(yuǎn)程復(fù)制不再需要輸入密碼
- 2023-04-03 Python之parser.add_argument解讀_python
- 2022-04-09 Spring事務(wù)管理之開啟聲明式事務(wù)
- 2022-07-22 Mybatis為實體類自定義別名的兩種方式
- 2022-03-16 C#?程序通用結(jié)構(gòu)_C#教程
- 最近更新
-
- window11 系統(tǒng)安裝 yarn
- 超詳細(xì)win安裝深度學(xué)習(xí)環(huán)境2025年最新版(
- Linux 中運(yùn)行的top命令 怎么退出?
- MySQL 中decimal 的用法? 存儲小
- get 、set 、toString 方法的使
- @Resource和 @Autowired注解
- Java基礎(chǔ)操作-- 運(yùn)算符,流程控制 Flo
- 1. Int 和Integer 的區(qū)別,Jav
- spring @retryable不生效的一種
- Spring Security之認(rèn)證信息的處理
- Spring Security之認(rèn)證過濾器
- Spring Security概述快速入門
- Spring Security之配置體系
- 【SpringBoot】SpringCache
- Spring Security之基于方法配置權(quán)
- redisson分布式鎖中waittime的設(shè)
- maven:解決release錯誤:Artif
- restTemplate使用總結(jié)
- Spring Security之安全異常處理
- MybatisPlus優(yōu)雅實現(xiàn)加密?
- Spring ioc容器與Bean的生命周期。
- 【探索SpringCloud】服務(wù)發(fā)現(xiàn)-Nac
- Spring Security之基于HttpR
- Redis 底層數(shù)據(jù)結(jié)構(gòu)-簡單動態(tài)字符串(SD
- arthas操作spring被代理目標(biāo)對象命令
- Spring中的單例模式應(yīng)用詳解
- 聊聊消息隊列,發(fā)送消息的4種方式
- bootspring第三方資源配置管理
- GIT同步修改后的遠(yuǎn)程分支