gpt4 book ai didi

c# - ruby 中的 hmac-sha1 不同于 C# HMACSHA1

转载 作者:数据小太阳 更新时间:2023-10-29 06:53:10 27 4
gpt4 key购买 nike

我正在尝试测试来自 ankoder.com 的 API authentication token 的摘要计算有问题.当我尝试从 C# 调用时,示例是 ruby 。当我比较 HMAC-SHA1 中的摘要结果时,我发现 key 结果有问题。

为了便于测试这里是代码:

require 'hmac-sha1'
require 'digest/sha1'
require 'base64'
token="-Sat, 14 Nov 2009 09:47:53 GMT-GET-/video.xml-"
private_key="whatever"
salt=Digest::SHA1.hexdigest(token)[0..19]
passkey=Base64.encode64(HMAC::SHA1.digest(private_key, salt)).strip

这给了我结果:“X/0EngsTYf7L8e7LvoihTMLetlM=\n”如果我在 C# 中使用以下代码尝试此操作:

const string PrivateKey = "whatever";

var date = "Sat, 14 Nov 2009 09:47:53 GMT";//DateTime.Now.ToUniversalTime().ToString("ddd, dd MMM yyyy HH:mm:ss") + " GMT";
string token=string.Format("-{0}-GET-/video.xml-", date);

var salt_binary=SHA1.Create().ComputeHash(Encoding.ASCII.GetBytes(token));
var salt_hex=BitConverter.ToString(salt_binary).Replace("-", "").ToLower();
var salt =salt_hex.Substring(0,20);

var hmac_sha1 =
new HMACSHA1(Encoding.ASCII.GetBytes(salt));
hmac_sha1.Initialize();

var private_key_binary = Encoding.ASCII.GetBytes(PrivateKey);
var passkey_binary = hmac_sha1.ComputeHash(private_key_binary,0,private_key_binary.Length);

var passkey = Convert.ToBase64String(passkey_binary).Trim();

salt 结果相同,但 passkey 结果不同 - C# 给我:

QLC68XjQlEBurwbVwr7euUfHW/k=

两者都生成盐:f5cab5092f9271d43d2e

知道发生了什么吗?

最佳答案

您在 C# 代码中将 PrivateKeysalt 放在了错误的位置;根据您的 Ruby 代码,PrivateKey 是 HMAC 的 secret key 。

另请注意,您在 Ruby 程序生成的散列的末尾包含了一个换行符(无论如何,根据您的示例输出)。您必须包含换行符,否则哈希将不匹配。

此 C# 程序更正了第一个问题:

using System;
using System.Security.Cryptography;
using System.Text;

namespace Hasher
{
class Program
{
static void Main(string[] args)
{
const string PrivateKey = "whatever";

string date = "Sat, 14 Nov 2009 09:47:53 GMT";
string token = string.Format("-{0}-GET-/video.xml-", date);

byte[] salt_binary = SHA1.Create().ComputeHash(Encoding.ASCII.GetBytes(token));
string salt_hex = BitConverter.ToString(salt_binary).Replace("-", "").ToLower();
string salt = salt_hex.Substring(0, 20);

HMACSHA1 hmac_sha1 = new HMACSHA1(Encoding.ASCII.GetBytes(PrivateKey));
hmac_sha1.Initialize();

byte[] private_key_binary = Encoding.ASCII.GetBytes(salt);
byte[] passkey_binary = hmac_sha1.ComputeHash(private_key_binary, 0, private_key_binary.Length);

string passkey = Convert.ToBase64String(passkey_binary).Trim();
}
}
}

关于c# - ruby 中的 hmac-sha1 不同于 C# HMACSHA1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1733957/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com