0

我不知道 PHP 并且我被困在一个位置上,任何人都可以帮助我。

我有一个 PHP 代码。

    $binarySignature = hash_hmac('sha1', $stringToSign, $secretKey, true);

    // We need to base64-encode it and then url-encode that.
    $urlSafeSignature = urlencode(base64_encode($binarySignature));

谁能告诉我上面代码的 C# 代码是什么。

4

3 回答 3

0

打电话时

using (HMACSHA1 hmac = new HMACSHA1(secretKey,**true**))
   { 
       hashBytes = hmac.ComputeHash(msgBytes); 
   }

我们需要将 true 作为参数传递。对我来说它工作正常。

于 2013-09-13T09:03:51.370 回答
0

主要取自这篇文章

private string Hash(string message, byte[] secretKey)
{
   byte[] msgBytes = System.Text.Encoding.UTF8.GetBytes(message);
   byte[] hashBytes;
   using (HMACSHA1 hmac = new HMACSHA1(secretKey))
   { 
       hashBytes = hmac.ComputeHash(msgBytes); 
   }
   var sb = new StringBuilder();
   for (int i = 0; i < hashBytes.Length; i++) 
         sb.Append(hashBytes[i].ToString("x2"));
   string hexString = sb.ToString();
   byte[] toEncodeAsBytes = System.Text.ASCIIEncoding.ASCII.GetBytes(hexString);
   return HttpUtility.UrlEncode(System.Convert.ToBase64String(toEncodeAsBytes));
}
于 2013-01-01T09:52:34.923 回答
0

看来你需要这样的东西:

public string Encode(string input, byte [] key)
{
        HMACSHA1 myhmacsha1 = new HMACSHA1(key);
        byte[] byteArray = Encoding.ASCII.GetBytes( input );
        MemoryStream stream = new MemoryStream( byteArray ); 
        byte[] hashValue = myhmacsha1.ComputeHash(stream);
        return hashValue.ToString();
}

另外,检查这些线程:

如何在 C# 中生成 HMAC-SHA1?

HMAC SHA1 对密钥和消息使用相同的值

于 2013-01-01T09:52:45.530 回答