mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-06 05:27:52 +00:00
31 lines
708 B
PHP
31 lines
708 B
PHP
<?php
|
|
/**
|
|
* @author Andreas Fischer <bantu@phpbb.com>
|
|
* @copyright 2014 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');
|
|
}
|
|
|
|
/**
|
|
* @dataProvider hashData()
|
|
*/
|
|
public function testHash($message, $longResult)
|
|
{
|
|
parent::testHash($message, substr($longResult, 0, 24));
|
|
}
|
|
|
|
/**
|
|
* @dataProvider hmacData()
|
|
*/
|
|
public function testHMAC($key, $message, $longResult)
|
|
{
|
|
parent::testHMAC($key, $message, substr($longResult, 0, 24));
|
|
}
|
|
}
|