<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
public partial class Form1 : Form { public Form1() { InitializeComponent(); } 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() == ".mrrar") textBox1.Text = strFile; } catch { } } //選擇要加密或解密的檔案 private void button1_Click(object sender, EventArgs e) { openFileDialog1.Filter = "*.rar(rar壓縮檔案)|*.rar|*.mrrar(mrrar加密檔案)|*.mrrar|*.*(所有檔案)|*.*"; if (openFileDialog1.ShowDialog() == DialogResult.OK) textBox1.Text = openFileDialog1.FileName; } //加密rar檔案 private void button2_Click(object sender, EventArgs e) { string strPwd = textBox2.Text; 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(textBox1.Text, FileMode.Open, FileAccess.Read); FileStream NewFStream = new FileStream(textBox1.Text + ".mrrar", 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)); 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; } CStream.Close(); NewFStream.Close(); FStream.Close(); File.Delete(textBox1.Text); MessageBox.Show("使用口令加密rar檔案成功!", "資訊提示", MessageBoxButtons.OK, MessageBoxIcon.Information); } //解密rar檔案 private void button3_Click(object sender, EventArgs e) { string strPwd = textBox2.Text; 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(textBox1.Text, FileMode.Open, FileAccess.Read); string strNewFile = textBox1.Text.Substring(0, textBox1.Text.Length - 6); 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)); 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; } CStream.Close(); FStream.Close(); NewFStream.Close(); File.Delete(textBox1.Text); System.Diagnostics.Process.Start(strNewFile); } catch { MessageBox.Show("口令錯誤!", "資訊提示", MessageBoxButtons.OK, MessageBoxIcon.Error); textBox2.Focus(); } } finally { CStream.Close(); FStream.Close(); NewFStream.Close(); } } //建立快捷選單 public static void FileMenu(string strPath, string strName) { try { Registry.ClassesRoot.CreateSubKey(".mrrar"); RegistryKey RKey1 = Registry.ClassesRoot.OpenSubKey(".mrrar", true); RKey1.SetValue("", "mrrarfile"); RKey1.Close(); Registry.ClassesRoot.CreateSubKey("mrrarfile"); RegistryKey RKey2 = Registry.ClassesRoot.OpenSubKey("mrrarfile", true); RKey2.CreateSubKey("DefaultIcon"); RKey2.CreateSubKey("shell"); RKey2.Close(); RegistryKey RKey3 = Registry.ClassesRoot.OpenSubKey("mrrarfile\DefaultIcon", true); RKey3.SetValue("", strPath); RKey3.Close(); RegistryKey RKey4 = Registry.ClassesRoot.OpenSubKey("mrrarfile\shell", true); RKey4.CreateSubKey("使用口令開啟"); RKey4.Close(); RegistryKey RKey5 = Registry.ClassesRoot.OpenSubKey("mrrarfile\shell\使用口令開啟", true); RKey5.CreateSubKey("command"); RKey5.Close(); RegistryKey RKey6 = Registry.ClassesRoot.OpenSubKey("mrrarfile\shell\使用口令開啟\command", true); RKey6.SetValue("", strName + " \F %1"); RKey6.Close(); } catch { } } }
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.button3 = new System.Windows.Forms.Button(); this.button2 = new System.Windows.Forms.Button(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.label1 = new System.Windows.Forms.Label(); this.textBox1 = new System.Windows.Forms.TextBox(); this.button1 = new System.Windows.Forms.Button(); this.label3 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.textBox2 = new System.Windows.Forms.TextBox(); this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog(); this.groupBox1.SuspendLayout(); this.SuspendLayout(); // // button3 // this.button3.Location = new System.Drawing.Point(250, 107); this.button3.Name = "button3"; this.button3.Size = new System.Drawing.Size(59, 27); this.button3.TabIndex = 11; this.button3.Text = "開啟"; this.button3.UseVisualStyleBackColor = true; this.button3.Click += new System.EventHandler(this.button3_Click); // // button2 // this.button2.Location = new System.Drawing.Point(185, 107); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(59, 27); this.button2.TabIndex = 12; this.button2.Text = "加密"; this.button2.UseVisualStyleBackColor = true; this.button2.Click += new System.EventHandler(this.button2_Click); // // groupBox1 // this.groupBox1.Controls.Add(this.label1); this.groupBox1.Controls.Add(this.textBox1); 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, 9); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(304, 92); this.groupBox1.TabIndex = 10; this.groupBox1.TabStop = false; this.groupBox1.Text = "rar檔案加/解密設定"; // // 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(95, 12); this.label1.TabIndex = 0; this.label1.Text = "請選擇rar檔案:"; // // textBox1 // this.textBox1.Location = new System.Drawing.Point(32, 35); this.textBox1.Name = "textBox1"; this.textBox1.Size = new System.Drawing.Size(225, 21); this.textBox1.TabIndex = 1; // // button1 // this.button1.Location = new System.Drawing.Point(263, 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); // // label3 // this.label3.AutoSize = true; this.label3.ForeColor = System.Drawing.Color.Red; this.label3.Location = new System.Drawing.Point(201, 66); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(95, 12); this.label3.TabIndex = 5; this.label3.Text = "(密碼應大於6位)"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(7, 66); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(65, 12); this.label2.TabIndex = 3; this.label2.Text = "加密口令:"; // // textBox2 // this.textBox2.Location = new System.Drawing.Point(73, 63); this.textBox2.Name = "textBox2"; this.textBox2.PasswordChar = '*'; this.textBox2.Size = new System.Drawing.Size(127, 21); this.textBox2.TabIndex = 4; // // 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(316, 140); this.Controls.Add(this.button3); this.Controls.Add(this.button2); this.Controls.Add(this.groupBox1); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "Form1"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "用口令加密rar壓縮檔案"; this.Load += new System.EventHandler(this.Form1_Load); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Button button3; private System.Windows.Forms.Button button2; private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox textBox1; private System.Windows.Forms.Button button1; private System.Windows.Forms.Label label3; private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox textBox2; private System.Windows.Forms.OpenFileDialog openFileDialog1; }
到此這篇關於詳解C#如何加密解密RAR檔案的文章就介紹到這了,更多相關C#加密解密RAR檔案內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45