私は 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# のコードを教えてください。