mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-12-26 03:27:31 +00:00
Hash: rm first parameter of testHMAC call
This commit is contained in:
parent
3f897cf48b
commit
89970885ed
@ -25,6 +25,6 @@ class Unit_Crypt_Hash_SHA256_96Test extends Unit_Crypt_Hash_SHA256Test
|
|||||||
*/
|
*/
|
||||||
public function testHMAC($key, $message, $longResult)
|
public function testHMAC($key, $message, $longResult)
|
||||||
{
|
{
|
||||||
parent::testHMAC($this->getInstance(), $key, $message, substr($longResult, 0, 24));
|
parent::testHMAC($key, $message, substr($longResult, 0, 24));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -25,6 +25,6 @@ class Unit_Crypt_Hash_SHA512_96Test extends Unit_Crypt_Hash_SHA512Test
|
|||||||
*/
|
*/
|
||||||
public function testHMAC($key, $message, $longResult)
|
public function testHMAC($key, $message, $longResult)
|
||||||
{
|
{
|
||||||
parent::testHMAC($this->getInstance(), $key, $message, substr($longResult, 0, 24));
|
parent::testHMAC($key, $message, substr($longResult, 0, 24));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user