风清月

c#简单md5加密

电脑版发表于:2019/3/1 15:34



c#简单md5加密

  public string CalMD5(string _str) 
        {
            //字符串转成字节数组
            byte[] bytes = System.Text.Encoding.Default.GetBytes(_str);
            MD5 md5 = new MD5CryptoServiceProvider();
            byte[] jmbytes = md5.ComputeHash(bytes);

           string str = BitConverter.ToString(jmbytes);
           return str.Replace("-","");
        }


关于TNBLOG
TNBLOG,技术分享。技术交流:群号677373950
ICP备案 :渝ICP备18016597号-1
App store Android
精彩评论
{{item.replyName}}
{{item.content}}
{{item.time}}
{{subpj.replyName}}
@{{subpj.beReplyName}}{{subpj.content}}
{{subpj.time}}
猜你喜欢