ฉันพยายามแฮชสตริงโดยใช้ SHA256 ฉันใช้รหัสต่อไปนี้:
using System;
using System.Security.Cryptography;
using System.Text;
public class Hash
{
public static string getHashSha256(string text)
{
byte[] bytes = Encoding.Unicode.GetBytes(text);
SHA256Managed hashstring = new SHA256Managed();
byte[] hash = hashstring.ComputeHash(bytes);
string hashString = string.Empty;
foreach (byte x in hash)
{
hashString += String.Format("{0:x2}", x);
}
return hashString;
}
}
อย่างไรก็ตามรหัสนี้ให้ผลลัพธ์ที่แตกต่างอย่างมีนัยสำคัญเมื่อเทียบกับ php เพื่อนของฉันเช่นเดียวกับเครื่องกำเนิดไฟฟ้าออนไลน์ (เช่นเครื่องกำเนิดไฟฟ้านี้ )
ไม่มีใครรู้ว่าข้อผิดพลาดคืออะไร? ฐานที่แตกต่างกันอย่างไร