程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#與PHP的md5計算後果不同的處理辦法

C#與PHP的md5計算後果不同的處理辦法

編輯:C#入門知識

C#與PHP的md5計算後果不同的處理辦法。本站提示廣大學習愛好者:(C#與PHP的md5計算後果不同的處理辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是C#與PHP的md5計算後果不同的處理辦法正文


問題重現

這個 API 是事先給 Lyra 使用做激活用的,遂翻開 Lyra 試了下,卻發現一切正常,於是可以掃除服務端的問題

放出招致錯誤的源碼(來自 MSDN):

public string CalculateMD5Hash(string input)
{
  // step 1, calculate MD5 hash from input
  MD5 md5 = System.Security.Cryptography.MD5.Create();
  byte[] inputBytes = System.Text.Encoding.ASCII.GetBytes(input);
  byte[] hash = md5.ComputeHash(inputBytes);
  // step 2, convert byte array to hex string
  StringBuilder sb = new StringBuilder();
  for (int i = 0; i < hash.Length; i++)
  { sb.Append(hash[i].ToString(“X2”));
  }
  return sb.ToString();
}

本質

MD5 有很多版本,其實這段代碼並沒有錯,但是 php 的 md5 函數默許前往的是 32位小寫 ,而以上這一段前往的是 16位小寫

於是想方法把這個 func 改為 32位小寫輸入即可

public static String md5(String s)
{
  MD5 md5 = new MD5CryptoServiceProvider();
  byte[] bytes = System.Text.Encoding.UTF8.GetBytes(s);
  bytes = md5.ComputeHash(bytes);
  md5.Clear();

  string ret = "";
  for (int i = 0; i < bytes.Length; i++)
  {
    ret += Convert.ToString(bytes[i], 16).PadLeft(2, '0');
  }
  return ret.PadLeft(32, '0');
}

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或許任務能帶來一定的協助,假如有疑問大家可以留言交流。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved