详解C#如何加密解密RAR文件

目录
  • 实践过程
    • 效果
    • 代码

实践过程

效果

代码

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文件内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

(0)

相关推荐

  • C#使用RSA加密解密文件

    本文实例为大家分享了C#使用RSA加密解密文件的具体代码,供大家参考,具体内容如下 加密代码: //加密代码,注意会覆盖原文件,里面有我的公钥,你要用时记得覆盖我的公钥 private bool encryptFile(string filename) { FileStream f; try { f = new FileStream(filename, FileMode.Open, FileAccess.ReadWrite, FileShare.Read); } catch { return f

  • c# rsa加密解密详解

    前言 RSA加密算法是一种非对称加密算法,简单来说,就是加密时使用一个钥匙,解密时使用另一个钥匙. 因为加密的钥匙是公开的,所又称公钥,解密的钥匙是不公开的,所以称为私钥. 密钥 关于RSA加密有很多文章,但几乎都只介绍了RSACryptoServiceProvider类的使用方法,如果只是走走看看,是没问题的,但真的想使用时,就会发现,你没有密钥字符串... 下面我们从获取密钥字符串开始逐步学习加密. 密钥字符串 每个安装过VisualStudio的电脑都可以找到一个文件-makecert.e

  • C#对文件进行加密解密代码

    加密代码 using System; using System.IO; using System.Security.Cryptography; public class Example19_9 { public static void Main() { // Create a new file to work with FileStream fsOut = File.Create(@"c:\temp\encrypted.txt"); // Create a new crypto pro

  • C#编写DES加密、解密类

    这个C#类封装的DES加密解密,可以使用默认秘钥进行加密.解密,也可以自定义秘钥进行加密.解密,调用简单方便. 示例一: using System; using System.Security.Cryptography; using System.Text; namespace DotNet.Utilities { /// <summary> /// DES加密/解密类. /// </summary> public class DESEncrypt { public DESEncr

  • C#开发中常用的加密解密方法汇总

    相信很多人在开发过程中经常会遇到需要对一些重要的信息进行加密处理,今天给大家分享我个人总结的一些加密算法: 常见的加密方式分为可逆和不可逆两种方式 可逆:RSA,AES,DES等 不可逆:常见的MD5,SHAD等 一.MD5消息摘要算法 我想这是大家都常听过的算法,可能也用的比较多.那么什么是MD5算法呢?MD5全称是message-digest algorithm 5,简单的说就是单向的加密,也就是说无法根据密文推导出明文. MD5主要用途: 1.对一段信息生成信息摘要,该摘要对该信息具有唯一

  • C#实现加密与解密详解

    目录 一.Hash加密,使用HashAlgorithm哈希算法类的派生类(MD5.SHA1等) 1.使用抽象类HashAlgorithm 2.使用抽象类MD5 3.使用MD5CryptoServiceProvider类 4.Web使用的Hash加密:FormsAuthentication类 5.文件哈希计算 二.对称加密:使用SymmetricAlgorithm对称算法类的派生类(Aes.DES等) 三.非对称加密:使用AsymmetricAlgorithm非对称算法类的派生类(DSA.RSA等

  • 详解C#如何加密解密RAR文件

    目录 实践过程 效果 代码 实践过程 效果 代码 public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { FileMenu(Application.ExecutablePath + ",0", Application.ExecutablePath); string[] str =

  • Python实现加密的RAR文件解压的方法(密码已知)

    博主之前在网上找了很多资料,发现rarfile库不能直接调用,需要安装unrar模块,下面将详细介绍整个实现流程. 第一步:安装unrar模块,直接pip install unrar可能会找不到库,需要下载unrar library,也就是UnRAR.dll,下载地址为:http://www.rarlab.com/rar/UnRARDLL.exe: 第二步:将unrar安装路径添加到系统环境变量,64位操作系统的路径为C:\Program Files (x86)\UnrarDLL\x64,然后还

  • 详解SQL Server数据库状态和文件状态

    数据库状态 (database states) 查询数据库的当前状态 : 1.查询所有数据库的状态 ,通过sys.databases目录视图的state_desc列 user master go select state_desc ,[name] from sys.databases go 2.查询指定数据库的状态,通过DATABASEPROPERTYEX函数的Status属性 select DATABASEPROPERTYEX('demoData','status') go 状态: ONLIN

  • 详解PHP防止直接访问.php 文件的实现方法

    详解PHP防止直接访问.php 文件的实现方法 为了保证我们用 PHP 写的 API 的安全性要禁止除了接口外的访问方式. 比如我们的项目为 example, 其下有文件夹 dir1.有个接口文件 api.php. 结构为: 输入图片说明 这时候我们要求只能通过 example/api.php 来调用file.php里的服务,不能直接通过example/dir1/file.php来访问. 在 php 里有这样一个变量$_SERVER,这是个数组变量, 里面有各种键值对, 具体的可以搜索一下资料.

  • 详解node服务器中打开html文件的两种方法

    本文介绍了详解node服务器中打开html文件的两种方法,分享给大家,具体如下: 方法1:利用 Express 托管静态文件,详情查看这里 方法2:使用fs模块提供的readFile方法打开文件,让其以text/html的形式输出. 代码: var express = require('express'); var fs=require("fs"); var app = express(); //方法1:通过express.static访问静态文件,这里访问的是ajax.html //

  • 详解配置 Apache 服务器支持 PHP 文件的解析

    详解配置 Apache 服务器支持 PHP 文件的解析 [说明] 1. 本例中 Apache 版本为 httpd-2.4.20-x64-vc14 ,安装路径为 E:\Apache24 2. PHP 版本为 php-5.5.34-Win32-VC11-x64 ,安装路径为 E:\php-5.5.34 [下载] 登录 http://php.NET/downloads.php 下载 PHP,由于我要把它跟 Apache 集成,所以我这里下载的是 Thread Safe 版本: [安装] 1. 解压下载

  • 详解C 语言项目中.h文件和.c文件的关系

    详解C 语言项目中.h文件和.c文件的关系 在编译器只认识.c(.cpp))文件,而不知道.h是何物的年代,那时的人们写了很多的.c(.cpp)文件,渐渐地,人们发现在很多.c(.cpp)文件中的声明语句就是相同的,但他们却不得不一个字一个字地重复地将这些内容敲入每个.c(.cpp)文件.但更为恐怖的是,当其中一个声明有变更时,就需要检查所有的.c(.cpp)文件. 于是人们将重复的部分提取出来,放在一个新文件里,然后在需要的.c(.cpp)文件中敲入#include XXXX这样的语句.这样即

  • 详解如何修改 node_modules 里的文件

    前言 有时候使用npm上的包,发现有bug,我们知道如何修改,但是别人可能一时半会没法更新,或者是我们特殊需求,别人不愿意修改,这时候我们只能自己动手丰衣足食.那么我们应该如何修改别人的源码呢?首先,直接修改node_modules里面的文件是不太行的,重新安装依赖就没有了.一般常用办法有两个: 下载别人代码到本地,放在src目录,修改后手动引入. fork别人的代码到自己仓库,修改后,从自己仓库安装这个插件. 这两个办法的缺陷就是:更新麻烦,我们每次都需要手动去更新代码,无法与插件同步更新.如

  • 详解python os.path.exists判断文件或文件夹是否存在

    os即operating system(操作系统),Python 的 os 模块封装了常见的文件和目录操作. os.path模块主要用于文件的属性获取,exists是"存在"的意思,所以顾名思义,os.path.exists()就是判断括号里的文件是否存在的意思,括号内的可以是文件路径. 举个栗子: import os #判断文件夹是否存在 dir = os.path.exists('C:\\Users\\Desktop') print('dir:', dir) #判断文件是否存在 f

  • 详解python中的异常和文件读写

    Python异常 1.python异常的完整语法 try: # 提示用户输入一个整数 num = int(input("输入一个整数:")) # 使用 8 除以用户输入的整数并且输出 result = 8 / num print(result) except ValueError: print("请输入正确的整数!") except Exception as result: print("未知错误:%s" % result) else: prin

随机推荐