MD5加密

作者:追风剑情 发布于:2015-12-3 15:10 分类:C#

需导入 using System.Security.Cryptography;

  1. public static class MD5Crypto
  2. {
  3. //MD5加密(生成32位字符码)
  4. public static string Encrypt(string input)
  5. {
  6. //注意: 编码不同,生成的MD5值也不同
  7. byte[] buffer = Encoding.UTF8.GetBytes(input);
  8. MD5 md5 = new MD5CryptoServiceProvider();
  9. byte[] res = md5.ComputeHash(buffer);
  10. return BitConverter.ToString(res).Replace("-", "");
  11. }
  12.  
  13. //密码混淆字符串
  14. public const string PASSWORD_PREFIX = "QwErT#2020&$kLjKNM986sljk@";
  15. public const string PASSWORD_POSTFIX = "Iklsn%$#@LIl.rXVPo^#123@";
  16. public static string EncryptPassword(string password)
  17. {
  18. string mix_password = string.Format("{0}{1}{2}", PASSWORD_PREFIX, password, PASSWORD_POSTFIX);
  19. return Encrypt(mix_password);
  20. }
  21. }

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号