iis服务器助手广告广告
返回顶部
首页 > 资讯 > 后端开发 > 其他教程 >C#实现加密exe文件
  • 928
分享到

C#实现加密exe文件

C#加密exe文件C#加密exeC#加密 2023-01-03 12:01:32 928人浏览 八月长安
摘要

目录实践过程效果代码实践过程 效果 代码 public partial class FORM1 : Form { public Form1() {

实践过程

效果

代码

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() == ".mrexe")
                textBox1.Text = strFile;
        }
        catch { }
    }
    
    //选择要加密或解密的文件
    private void button1_Click(object sender, EventArgs e)
    {
        openFileDialog1.Filter = "*.exe(exe可执行文件)|*.exe|*.mrexe(mrexe加密文件)|*.mrexe|*.*(所有文件)|*.*";
        if (openFileDialog1.ShowDialog() == DialogResult.OK)
            textBox1.Text = openFileDialog1.FileName;
    }

    //加密EXE文件
    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 + ".mrexe", 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("使用口令加密可执行文件成功!", "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
    }

    //解密EXE文件
    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(".mrexe");
            RegistryKey RKey1 = Registry.ClassesRoot.OpenSubKey(".mrexe", true);
            RKey1.SetValue("", "mrexefile");
            RKey1.Close();
            Registry.ClassesRoot.CreateSubKey("mrexefile");
            RegistryKey RKey2 = Registry.ClassesRoot.OpenSubKey("mrexefile", true);
            RKey2.CreateSubKey("DefaultIcon");
            RKey2.CreateSubKey("shell");
            RKey2.Close();
            RegistryKey RKey3 = Registry.ClassesRoot.OpenSubKey("mrexefile\\DefaultIcon", true);
            RKey3.SetValue("", strPath);
            RKey3.Close();
            RegistryKey RKey4 = Registry.ClassesRoot.OpenSubKey("mrexefile\\shell", true);
            RKey4.CreateSubKey("使用口令打开");
            RKey4.Close();
            RegistryKey RKey5 = Registry.ClassesRoot.OpenSubKey("mrexefile\\shell\\使用口令打开", true);
            RKey5.CreateSubKey("command");
            RKey5.Close();
            RegistryKey RKey6 = Registry.ClassesRoot.OpenSubKey("mrexefile\\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 = "Exe文件加/解密设置";
        // 
        // 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 = "请选择Exe文件:";
        // 
        // 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 = "使用口令加密可执行文件";
        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#实现加密exe文件的文章就介绍到这了,更多相关C#加密exe文件内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

--结束END--

本文标题: C#实现加密exe文件

本文链接: https://www.lsjlt.com/news/176443.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
  • c语言怎么计算字符串长度
    在C语言中,可以使用内置的strlen()函数来计算字符串的长度。该函数位于string.h头文件中。以下是一个示例代码: #inc...
    99+
    2024-05-15
    c语言
  • c语言怎么判断三个数的大小
    可以通过比较三个数之间的大小关系来判断它们的大小。以下是一个示例代码: #include <stdio.h> int ...
    99+
    2024-05-15
    c语言
  • c++排序函数sort怎么使用
    在C++中,使用sort函数对容器中的元素进行排序,可以按照默认的升序排列,也可以自定义排序规则。 下面是一个简单的例子,对一个ve...
    99+
    2024-05-15
    c++
  • c++中string的compare函数怎么使用
    在C++中,可以使用string的compare函数来比较两个string对象的大小。该函数的原型如下: int compare(c...
    99+
    2024-05-15
    c++
  • c++中string的compare函数有什么用
    c++中string的compare函数用于比较两个字符串的大小关系。该函数返回一个整数值,表示两个字符串的比较结果。 具体来说,如...
    99+
    2024-05-15
    c++
  • c++中print函数的功能有哪些
    在C++中,通常使用std::cout来进行输出操作,而不是使用print函数。std::cout是C++标准库中的一个输出流对象,...
    99+
    2024-05-15
    c++
  • c语言数据结构怎么使用
    在C语言中,数据结构可以通过定义结构体来实现。以下是一些常见的数据结构的使用方法示例: 链表: #include <std...
    99+
    2024-05-15
    c语言
  • c++中print函数的用法是什么
    在C++中没有内置的print函数,但可以使用cout来输出内容到控制台。cout是C++标准库中的一个输出流对象,可以使用<...
    99+
    2024-05-15
    c++
  • c++中concept的用法是什么
    在C++20中,Concept是一种新的语言特性,用于定义类型要求和约束。Concept可以被用来约束函数模板、类模板和普通函数的参...
    99+
    2024-05-15
    c++
  • c++中concept的作用是什么
    在C++中,concept的作用是定义一种通用的约束,用于限制模板参数的类型范围。通过使用concept,可以在编译时对模板参数进行...
    99+
    2024-05-15
    c++
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作