1 Star 0 Fork 0

lhtzbj12/csharp-sm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Sm3Util.cs 875 Bytes
一键复制 编辑 原始数据 按行查看 历史
lhtzbj12 提交于 2024-02-22 10:32 . 初始化
using Org.BouncyCastle.Crypto.Digests;
using Org.BouncyCastle.Security;
using Org.BouncyCastle.Utilities;
using Org.BouncyCastle.Utilities.Encoders;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CSharpSM
{
public class Sm3Util
{
/// <summary>
/// 基于SM3获取摘要
/// </summary>
/// <param name="srcData">源数据</param>
/// <returns></returns>
public static string Digest(string srcData)
{
byte[] bytes = Encoding.UTF8.GetBytes(srcData);
SM3Digest digest = new SM3Digest();
digest.BlockUpdate(bytes, 0, bytes.Length);
byte[] result = DigestUtilities.DoFinal(digest);
return Hex.ToHexString(result);
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/lhtzbj12/csharp-sm.git
[email protected]:lhtzbj12/csharp-sm.git
lhtzbj12
csharp-sm
csharp-sm
master

搜索帮助