• 大小: 0.10M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-03-27
  • 语言: C#
  • 标签: c#  

资源简介


C#实现字符串SHA-256加密算法工程下载,VS2013工程,使用系统带的加密库, using System.Security.Cryptography;

资源截图

代码片段和文件信息

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

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

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

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2016-01-10 00:36  SHA256_V1\
     文件         157  2016-01-10 00:35  SHA256_V1\App.config
     文件         522  2016-01-10 00:36  SHA256_V1\Program.cs
     目录           0  2016-01-10 00:29  SHA256_V1\Properties\
     文件        1360  2016-01-10 00:29  SHA256_V1\Properties\AssemblyInfo.cs
     文件        2858  2016-01-10 00:35  SHA256_V1\Properties\Resources.Designer.cs
     文件        5612  2016-01-10 00:29  SHA256_V1\Properties\Resources.resx
     文件        1109  2016-01-10 00:35  SHA256_V1\Properties\Settings.Designer.cs
     文件         249  2016-01-10 00:29  SHA256_V1\Properties\Settings.settings
     文件        3902  2016-01-10 00:35  SHA256_V1\SHA256_V1.csproj
     文件        2165  2016-01-10 00:33  SHA256_V1\StringSHA256.cs
     文件        7195  2016-01-10 00:33  SHA256_V1\StringSHA256.designer.cs
     文件       44621  2016-01-10 00:33  SHA256_V1\StringSHA256.resx
     目录           0  2016-01-10 00:29  SHA256_V1\bin\
     目录           0  2016-01-10 00:30  SHA256_V1\bin\Debug\
     文件       37376  2016-01-10 00:36  SHA256_V1\bin\Debug\SHA256_V1.exe
     文件         157  2016-01-10 00:35  SHA256_V1\bin\Debug\SHA256_V1.exe.config
     文件       26112  2016-01-10 00:36  SHA256_V1\bin\Debug\SHA256_V1.pdb
     文件       21656  2016-01-10 00:35  SHA256_V1\bin\Debug\SHA256_V1.vshost.exe
     文件         157  2016-01-10 00:35  SHA256_V1\bin\Debug\SHA256_V1.vshost.exe.config
     文件         490  2013-03-18 17:00  SHA256_V1\bin\Debug\SHA256_V1.vshost.exe.manifest
     目录           0  2016-01-10 00:37  SHA256_V1\bin\Release\
     目录           0  2016-01-10 00:29  SHA256_V1\obj\
     目录           0  2016-01-10 00:36  SHA256_V1\obj\Debug\
     文件        1087  2016-01-10 00:35  SHA256_V1\obj\Debug\DesignTimeResolveAssemblyReferences.cache
     文件        6870  2016-01-10 00:36  SHA256_V1\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     文件         180  2016-01-10 00:36  SHA256_V1\obj\Debug\SHA256_V1.Properties.Resources.resources
     文件       26236  2016-01-10 00:36  SHA256_V1\obj\Debug\SHA256_V1.StringSHA256.resources
     文件         706  2016-01-10 00:36  SHA256_V1\obj\Debug\SHA256_V1.csproj.FileListAbsolute.txt
     文件         854  2016-01-10 00:36  SHA256_V1\obj\Debug\SHA256_V1.csproj.GenerateResource.Cache
     文件        3560  2016-01-10 00:36  SHA256_V1\obj\Debug\SHA256_V1.csprojResolveAssemblyReference.cache
............此处省略9个文件信息

评论

共有 条评论