0

我试图在 php 中重现 totp 计算参考官方(https://www.rfc-editor.org/rfc/rfc6238附录 A)中提到的测试用例,这些用例是用 java 编写的。该参考提供了 sha1、sha256 和 sha512 算法的示例。

我发现Rob Swan 的这个很好的例子(参见 8 位数的例子)重现了一个很好的测试用例(使用 sha1)。但是,如果我将算法更改为 sha256 或 sha512(并根据参考输入数据也更改种子),我得到的结果与参考的不同。

php的hmac hash函数可能和java的不一样吗?

谢谢!

4

1 回答 1

1

* 解决方案

这是我提到的 Rob Swan 的 php 实现的副本:

<?php

// Define your secret seed
// NB: this is a hexadecimal representation of the example
// ASCII string which is: 12345678901234567890
$secret_seed = "3132333435363738393031323334353637383930";

// Determine the time window as 30 seconds
$time_window = 30;

// Set the timestamp manually
$exact_time = 1111111109;

// Round the time down to the time window
$rounded_time = floor($exact_time/$time_window);

// Pack the counter into binary
$packed_time = pack("N", $rounded_time);

// Make sure the packed time is 8 characters long
$padded_packed_time = str_pad($packed_time,8, chr(0), STR_PAD_LEFT);

// Pack the secret seed into a binary string
$packed_secret_seed = pack("H*", $secret_seed);

// Generate the hash using the SHA1 algorithm
$hash = hash_hmac ('sha1', $padded_packed_time, $packed_secret_seed, true);

// NB: Note we have change the exponent in the pow function 
// from 6 to 8 to generate an 8 digit OTP not a 6 digit one 

// Extract the 8 digit number fromt the hash as per RFC 6238
$offset = ord($hash[19]) & 0xf;
$otp = (
    ((ord($hash[$offset+0]) & 0x7f) << 24 ) |
    ((ord($hash[$offset+1]) & 0xff) << 16 ) |
    ((ord($hash[$offset+2]) & 0xff) << 8 ) |
    (ord($hash[$offset+3]) & 0xff)
) % pow(10, 8);

// NB: Note that we are padding to 8 characters not 6 for this example

// Add any missing zeros to the left of the numerical output
$otp = str_pad($otp, 8, "0", STR_PAD_LEFT);

// Display the output, which should be 
echo "This should display 07081804: " . $otp;

?>

关键是这一行:

$offset = ord($hash[19]) & 0xf;

这在使用 sha1 算法的假设下工作正常,该算法返回 20 个字符的字符串。

要抽象该行并使其与任何其他算法兼容,请将此行更改为:

$offset = ord($hash[strlen($hash)-1]) & 0xf;

现在您有了一个通用且可工作的 php 版本的 RFC 6238 totp 计算!

于 2013-06-09T14:16:29.527 回答