码迷,mamicode.com
首页 > Windows程序 > 详细

C#加密之md5加密

时间:2018-05-24 16:38:39      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:字符   md5加密   ash   tput   efault   tostring   new   tco   []   

using System.Security.Cryptography;
using System.Text;

public static string md5(string s)
{
    byte[] result = Encoding.Default.GetBytes(s);    
    MD5 md5 = new MD5CryptoServiceProvider();
    byte[] output = md5.ComputeHash(result);

    // 加密后的字符串
    return BitConverter.ToString(output).Replace("-", "");
}


// 大写32位
Console.WriteLine(md5("阿尔法问工作室")); 

// 转小写
Console.WriteLine(md5("阿尔法问工作室").ToLower());     

C#加密之md5加密

标签:字符   md5加密   ash   tput   efault   tostring   new   tco   []   

原文地址:https://www.cnblogs.com/ywj1874/p/9083091.html

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