码迷,mamicode.com
首页 > Web开发 > 详细

ASP.NET-SHA256加密方法

时间:2017-07-17 15:14:14      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:static   ati   SHA256   encoding   i++   from   ret   mst   com   

/// <summary>
/// SHA256加密
/// </summary>
/// <param name="strData"></param>
/// <returns></returns>
public static string GetSHA256HashFromString(string strData)
{
byte[] bytValue = System.Text.Encoding.UTF8.GetBytes(strData);
SHA256 sha256 = new SHA256CryptoServiceProvider();

byte[] retVal = sha256.ComputeHash(bytValue);
StringBuilder sb = new StringBuilder();
for (int i = 0; i < retVal.Length; i++)
{
sb.Append(retVal[i].ToString("x2"));
}
return sb.ToString();
}

ASP.NET-SHA256加密方法

标签:static   ati   SHA256   encoding   i++   from   ret   mst   com   

原文地址:http://www.cnblogs.com/LiHeQ/p/7194097.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!