我在 C# 中有一个哈希方法,如下所示:
MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider();
byte[] raw_input = Encoding.UTF32.GetBytes("hello");
byte[] raw_output = md5.ComputeHash(raw_input);
string output = "";
foreach (byte myByte in raw_output)
output += myByte.ToString("X2");
return output;
如何在 PHP 中实现它?执行以下操作会产生不同的哈希摘要...
$output = hash('md5', 'hello');