SecurityUtility.cs 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Security.Cryptography;
  6. using System.IO;
  7. namespace WeiXin.Library.Utility
  8. {
  9. class SecurityUtility
  10. {
  11. /// <summary>
  12. /// SHA1加密
  13. /// </summary>
  14. /// <param name="intput">输入字符串</param>
  15. /// <returns>加密后的字符串</returns>
  16. public static string SHA1Encrypt(string intput)
  17. {
  18. byte[] StrRes = Encoding.Default.GetBytes(intput);
  19. HashAlgorithm mySHA = new SHA1CryptoServiceProvider();
  20. StrRes = mySHA.ComputeHash(StrRes);
  21. StringBuilder EnText = new StringBuilder();
  22. foreach (byte Byte in StrRes)
  23. {
  24. EnText.AppendFormat("{0:x2}", Byte);
  25. }
  26. return EnText.ToString();
  27. }
  28. //对密码进行MD5加密
  29. static string Md5EncryptStr32(string str)
  30. {
  31. MD5CryptoServiceProvider md5Hasher = new MD5CryptoServiceProvider();
  32. // Convert the input string to a byte array and compute the hash.
  33. char[] temp = str.ToCharArray();
  34. byte[] buf = new byte[temp.Length];
  35. for (int i = 0; i < temp.Length; i++)
  36. {
  37. buf[i] = (byte)temp[i];
  38. }
  39. byte[] data = md5Hasher.ComputeHash(buf);
  40. // Create a new Stringbuilder to collect the bytes
  41. // and create a string.
  42. StringBuilder sBuilder = new StringBuilder();
  43. // Loop through each byte of the hashed data
  44. // and format each one as a hexadecimal string.
  45. for (int i = 0; i < data.Length; i++)
  46. {
  47. sBuilder.Append(data[i].ToString("x2"));
  48. }
  49. // Return the hexadecimal string.
  50. return sBuilder.ToString();
  51. }
  52. }
  53. }