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

33 lines
729 B
PHP
Raw Normal View History

2014-08-10 07:01:21 +00:00
<?php
/**
* @author Andreas Fischer <bantu@phpbb.com>
* @copyright 2014 Andreas Fischer
2014-08-10 07:01:21 +00:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/
2014-12-17 00:16:54 +00:00
use phpseclib\Crypt\Hash;
2014-08-10 07:01:21 +00:00
class Unit_Crypt_Hash_SHA256_96Test extends Unit_Crypt_Hash_SHA256Test
{
public function getInstance()
{
2014-12-17 00:16:54 +00:00
return new Hash('sha256-96');
2014-08-10 07:01:21 +00:00
}
2014-08-10 16:52:31 +00:00
/**
2015-03-29 16:07:17 +00:00
* @dataProvider hashData()
*/
2014-08-10 16:52:31 +00:00
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
/**
2015-03-29 16:07:17 +00:00
* @dataProvider hmacData()
*/
2014-08-10 16:52:31 +00:00
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
}
}