• 大小: 63KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-05
  • 语言: C#
  • 标签: C#  RSA  加密  解密  

资源简介

C#实现字符串RSA加密与解密 算法工程下载 ,根据网上的例子修改而成,经过测试工作正常,winform。

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace RSA_V1
{
    static class Program
    {
        /// 
        /// 应用程序的主入口点。
        /// 

        [STAThread]
        static void Main()
        {
            Application.EnableVisualstyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new RSA_Frm());
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2016-01-11 00:01  RSA_V1\
     文件         187  2016-01-10 22:41  RSA_V1\App.config
     文件         520  2016-01-10 22:44  RSA_V1\Program.cs
     目录           0  2016-01-10 22:41  RSA_V1\Properties\
     文件        1354  2016-01-10 22:41  RSA_V1\Properties\AssemblyInfo.cs
     文件        2864  2016-01-10 22:41  RSA_V1\Properties\Resources.Designer.cs
     文件        5612  2016-01-10 22:41  RSA_V1\Properties\Resources.resx
     文件        1093  2016-01-10 22:41  RSA_V1\Properties\Settings.Designer.cs
     文件         249  2016-01-10 22:41  RSA_V1\Properties\Settings.settings
     文件        5524  2016-01-11 00:01  RSA_V1\RSAUtil.cs
     文件       10106  2016-01-10 23:41  RSA_V1\RSA_Frm.Designer.cs
     文件        2110  2016-01-10 23:42  RSA_V1\RSA_Frm.cs
     文件        5817  2016-01-10 23:41  RSA_V1\RSA_Frm.resx
     文件        3840  2016-01-10 22:44  RSA_V1\RSA_V1.csproj
     目录           0  2016-01-10 22:44  RSA_V1\bin\
     目录           0  2016-01-10 23:03  RSA_V1\bin\Debug\
     文件       14848  2016-01-11 00:01  RSA_V1\bin\Debug\RSA_V1.exe
     文件         187  2016-01-10 22:41  RSA_V1\bin\Debug\RSA_V1.exe.config
     文件       34304  2016-01-11 00:01  RSA_V1\bin\Debug\RSA_V1.pdb
     文件       23168  2016-01-10 22:41  RSA_V1\bin\Debug\RSA_V1.vshost.exe
     文件         187  2016-01-10 22:41  RSA_V1\bin\Debug\RSA_V1.vshost.exe.config
     文件         490  2013-03-18 17:00  RSA_V1\bin\Debug\RSA_V1.vshost.exe.manifest
     文件        1282  2016-01-11 00:01  RSA_V1\bin\Debug\privatekey.xml
     文件         320  2016-01-11 00:01  RSA_V1\bin\Debug\publickey.xml
     目录           0  2016-01-11 00:02  RSA_V1\bin\Release\
     目录           0  2016-01-10 22:41  RSA_V1\obj\
     目录           0  2016-01-11 00:01  RSA_V1\obj\Debug\
     文件         865  2016-01-10 22:41  RSA_V1\obj\Debug\DesignTimeResolveAssemblyReferences.cache
     文件        6943  2016-01-10 22:44  RSA_V1\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     文件         180  2016-01-10 22:46  RSA_V1\obj\Debug\RSA_V1.Properties.Resources.resources
     文件         180  2016-01-10 23:41  RSA_V1\obj\Debug\RSA_V1.RSA_Frm.resources
............此处省略11个文件信息

评论

共有 条评论