phpseclib/tests/Unit/Crypt/Hash/SHA256_96Test.php

31 lines
705 B
PHP
Raw Normal View History

2014-08-10 07:01:21 +00:00
<?php
/**
* @author Andreas Fischer <bantu@phpbb.com>
* @copyright MMXIV Andreas Fischer
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/
class Unit_Crypt_Hash_SHA256_96Test extends Unit_Crypt_Hash_SHA256Test
{
public function getInstance()
{
return new Crypt_Hash('sha256-96');
}
2014-08-10 16:52:31 +00:00
/**
* @dataProvider hashData()
*/
public function testHash($message, $longResult)
2014-08-10 07:01:21 +00:00
{
2014-08-10 16:52:31 +00:00
parent::testHash($message, substr($longResult, 0, 24));
2014-08-10 07:01:21 +00:00
}
2014-08-10 16:52:31 +00:00
/**
* @dataProvider hmacData()
*/
public function testHMAC($key, $message, $longResult)
2014-08-10 07:01:21 +00:00
{
parent::testHMAC($key, $message, substr($longResult, 0, 24));
2014-08-10 07:01:21 +00:00
}
}