其他分享
首页 > 其他分享> > .Net Core 密码加密

.Net Core 密码加密

作者:互联网

使用步骤:

  1.创建一个密码加密的类

  2.使用如下代码

 public static string CreateMd5(string inputValue)
        {
            //32位大写
            using (var md5 = MD5.Create())
            {
                var result = md5.ComputeHash(Encoding.UTF8.GetBytes(inputValue));
                var strResult = BitConverter.ToString(result);
                string result3 = strResult.Replace("-", "");
                return result3;
            }
        }

   3.引用命名空间

using System.Security.Cryptography;

  4.

 

 

  

标签:Core,加密,string,strResult,result3,result,var,Net,md5
来源: https://www.cnblogs.com/liu6978/p/16073516.html