c#md5与PHPs md5散列相同
本文关键字:md5 PHPs c#md5 | 更新日期: 2023-09-27 18:20:18
我有点疯了!我正在尝试根据现有数据库验证我的应用程序(因此我无法更改PHP端),我需要将我的密码字段转换为与PHP的md5(moo)命令相同。
然而,我试图创建哈希的每个公式都会得到相同的md5,与数据库中的内容非常不同。
有没有一个公式能产生同样的结果?
我试过:
public static string MbelcherEncodePassword(string originalPassword)
{
Byte[] originalBytes;
Byte[] encodedBytes;
MD5 md5;
// Conver the original password to bytes; then create the hash
md5 = new MD5CryptoServiceProvider();
originalBytes = ASCIIEncoding.Default.GetBytes(originalPassword);
encodedBytes = md5.ComputeHash(originalBytes);
// Bytes to string
return System.Text.RegularExpressions.Regex.Replace(BitConverter.ToString(encodedBytes), "-", "").ToLower();
}
和:
public static string MD5(string password)
{
byte[] textBytes = System.Text.Encoding.Default.GetBytes(password);
try
{
System.Security.Cryptography.MD5CryptoServiceProvider cryptHandler;
cryptHandler = new System.Security.Cryptography.MD5CryptoServiceProvider();
byte[] hash = cryptHandler.ComputeHash(textBytes);
string ret = "";
foreach (byte a in hash)
{
if (a < 16)
ret += "0" + a.ToString("x");
else
ret += a.ToString("x");
}
return ret;
}
catch
{
throw;
}
}
和:
public static string MD5Hash(string text)
{
System.Security.Cryptography.MD5 md5 = new System.Security.Cryptography.MD5CryptoServiceProvider();
return System.Text.RegularExpressions.Regex.Replace(BitConverter.ToString(md5.ComputeHash(ASCIIEncoding.Default.GetBytes(text))), "-", "");
}
没有用。任何帮助都将不胜感激!
感谢
下面应该给出与PHP md5:相同的十六进制字符串
public string GetMd5Hex(MD5 crypt, string input)
{
return crypt.ComputeHash(UTF8Encoding.UTF8.GetBytes(input))
.Select<byte, string>(a => a.ToString("x2"))
.Aggregate<string>((a, b) => string.Format("{0}{1}", a, b));
}