这段代码在c#中的等价是什么?

本文关键字:是什么 段代码 代码 | 更新日期: 2023-09-27 17:50:23

我不懂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#写的吗

这段代码在c#中的等价是什么?

看来您需要这样的东西:

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对密钥和消息使用相同的值

主要摘自本文:

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));
}

呼叫

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

需要传递true作为参数。