0

私は PHP を知りません。私は 1 つのポジションで立ち往生しています。誰でも助けてくれます。

私は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

主にこの投稿から取得:

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 に答える
0

通話中

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

パラメータとして true を渡す必要があります。私にとっては正常に動作しています。

于 2013-09-13T09:03:51.370 に答える