PHP生成HMAC-SHA1签名

时间:2016-05-13 10:08:50

标签: php hmacsha1

这让我发疯了。

我正在尝试按照此处的建议生成签名:https://www.reed.co.uk/developers/SignatureTest

这样:

function createSignature($queryUrl, $timestamp, $apiKey, $http = "GET", $agent = "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)"){
    $signature = $http . $agent . $queryUrl . "www.reed.co.uk" . $timestamp;
    $signature = base64_encode(hash_hmac("sha1", $signature, $apiKey, true));
    return $signature;
}


$clientId = 1;
$timestamp = "2016-05-13T09:22:50Z";

$apiKey = "bacd2d2d-8b69-43c8-94c5-4a24c0269b79";

$queryUrl = "https://www.reed.co.uk/recruiter/api/1.0/cvsearch";

$reedQuery = \Httpful\Request::get($queryUrl)
    ->addHeaders(array(
        "X-ApiSignature" => createSignature($queryUrl, $timestamp, $apiKey),
        "X-ApiClientId" => $clientId,
        "X-TimeStamp" => $timestamp
    ))
    ->expectsJson()
    ->send();


print_r($reedQuery);

现在由于某些原因它会在我的服务器上返回:WRTjqQKfyEQyLJEzWWuT3SWgGPk= 虽然预期结果是:JUgvCh5oeFYe1HDmfiMObOu1+nQ=

我尝试了一切,甚至从小端到大端。 什么都没有。

有什么问题? :(

2 个答案:

答案 0 :(得分:1)

我在同样的问题上挣扎;在另一个问题下,解决方案是posted here

问题是字符串键(GUID)需要在前3个段(http://msdn.microsoft.com/en-us/library/system.guid.tobytearray.aspx)中反转的2个字符的十六进制数字的顺序。

创建哈希的示例(使用上面的密钥):

$apiToken = 'bacd2d2d-8b69-43c8-94c5-4a24c0269b79';
$stringToSign = 'POSTReedAgenthttps://www.reed.co.uk/recruiter/api/1.0/jobswww.reed.co.uk2017-11-11T13:50:06+00:00';
$hexStr = str_replace('-','',$apiToken);
$c = explode('-',chunk_split($hexStr,2,'-'));
$hexArr = array($c[3],$c[2],$c[1],$c[0],$c[5],$c[4],$c[7],$c[6],$c[8],$c[9],$c[10],$c[11],$c[12],$c[13],$c[14],$c[15]);
$keyStr = '';
for ($i = 0; $i < 16; ++$i) {
    $num = hexdec($hexArr[$i]);
    $keyStr .= chr($num);
}
$apiSignature = base64_encode(hash_hmac('sha1',$stringToSign,$keyStr,true));

这会生成一个与Signature Test匹配的哈希值。

答案 1 :(得分:0)

对于sha1只需要hash_hmac函数

     hash_hmac('sha1', $inputText, $keyString)
相关问题