资源简介

Visual C# 2015 C# 实现 文件加密保护的例子,包括了完整的源代码,本加解密程序用起来很简单,运行程序后,请选择要加密或解密的文件,输入设定好加/解密密码,要注意密码应大于6位,然后进行文件加/解密设置,确定后,将适时显示加/解密进度,你可在本页下载该示例完整项目源码。

资源截图

代码片段和文件信息

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;
//download by http://www.codesc.net
namespace ProtectFile
{
    public partial class Frm_Main : Form
    {
        public Frm_Main()
        {
            InitializeComponent();
            CheckForIllegalCrossThreadCalls = false;
        }

        private void Form1_Load(object sender EventArgs e)
        {
            FileMenu(Application.ExecutablePath + “0“ Application.ExecutablePath);
            string[] str = Environment.GetCommandLineArgs();
            try
            {

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      16384  2010-09-04 09:45  codesc.net\ProtectFile\ProtectFile\bin\Debug\ProtectFile.exe

     文件      36352  2010-09-04 09:45  codesc.net\ProtectFile\ProtectFile\bin\Debug\ProtectFile.pdb

     文件      14328  2010-09-04 09:44  codesc.net\ProtectFile\ProtectFile\bin\Debug\ProtectFile.vshost.exe

     文件        490  2009-06-11 05:14  codesc.net\ProtectFile\ProtectFile\bin\Debug\ProtectFile.vshost.exe.manifest

     文件        766  2008-12-12 13:03  codesc.net\ProtectFile\ProtectFile\bin\Debug\加密.ico

     文件      10836  2018-10-05 22:52  codesc.net\ProtectFile\ProtectFile\Frm_Main.cs

     文件       8294  2010-09-04 09:45  codesc.net\ProtectFile\ProtectFile\Frm_Main.Designer.cs

     文件       6017  2008-12-12 13:18  codesc.net\ProtectFile\ProtectFile\Frm_Main.resx

     文件        495  2010-09-04 09:45  codesc.net\ProtectFile\ProtectFile\Program.cs

     文件       1376  2008-12-11 14:06  codesc.net\ProtectFile\ProtectFile\Properties\AssemblyInfo.cs

     文件       2872  2008-12-11 14:05  codesc.net\ProtectFile\ProtectFile\Properties\Resources.Designer.cs

     文件       5612  2008-12-11 14:05  codesc.net\ProtectFile\ProtectFile\Properties\Resources.resx

     文件       1096  2008-12-11 14:05  codesc.net\ProtectFile\ProtectFile\Properties\Settings.Designer.cs

     文件        249  2008-12-11 14:05  codesc.net\ProtectFile\ProtectFile\Properties\Settings.settings

     文件       3957  2010-09-04 09:45  codesc.net\ProtectFile\ProtectFile\ProtectFile.csproj

     文件        766  2008-12-12 13:04  codesc.net\ProtectFile\ProtectFile\加密.ico

     文件        923  2008-12-11 14:05  codesc.net\ProtectFile\ProtectFile.sln

    ..A..H.     21504  2010-12-30 09:50  codesc.net\ProtectFile\ProtectFile.suo

     目录          0  2018-10-05 20:49  codesc.net\ProtectFile\ProtectFile\bin\Debug

     目录          0  2018-10-05 20:49  codesc.net\ProtectFile\ProtectFile\bin

     目录          0  2018-10-05 20:49  codesc.net\ProtectFile\ProtectFile\Properties

     目录          0  2018-10-05 22:53  codesc.net\ProtectFile\ProtectFile

     目录          0  2018-10-05 20:49  codesc.net\ProtectFile

     目录          0  2018-10-05 22:53  codesc.net

----------- ---------  ---------- -----  ----

               132317                    24


评论

共有 条评论