2012-08-20 11:49:41 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2014-02-15 18:57:49 +00:00
|
|
|
* @author Andreas Fischer <bantu@phpbb.com>
|
|
|
|
* @copyright MMXII Andreas Fischer
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2012-08-20 11:49:41 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
class Crypt_Hash_MD5Test extends Crypt_Hash_TestCase
|
|
|
|
{
|
2014-02-15 18:57:49 +00:00
|
|
|
public function getInstance()
|
|
|
|
{
|
|
|
|
return new Crypt_Hash('md5');
|
|
|
|
}
|
2012-08-20 11:49:41 +00:00
|
|
|
|
2014-02-15 18:57:49 +00:00
|
|
|
/**
|
|
|
|
* @dataProvider hashData()
|
|
|
|
*/
|
|
|
|
public function testHash($message, $result)
|
|
|
|
{
|
|
|
|
$this->assertHashesTo($this->getInstance(), $message, $result);
|
|
|
|
}
|
2012-08-20 11:49:41 +00:00
|
|
|
|
2014-02-15 18:57:49 +00:00
|
|
|
static public function hashData()
|
|
|
|
{
|
|
|
|
return array(
|
|
|
|
array('', 'd41d8cd98f00b204e9800998ecf8427e'),
|
|
|
|
array('The quick brown fox jumps over the lazy dog', '9e107d9d372bb6826bd81d3542a419d6'),
|
|
|
|
array('The quick brown fox jumps over the lazy dog.', 'e4d909c290d0fb1ca068ffaddf22cbd0'),
|
|
|
|
);
|
|
|
|
}
|
2012-08-20 11:49:41 +00:00
|
|
|
|
2014-02-15 18:57:49 +00:00
|
|
|
/**
|
|
|
|
* @dataProvider hmacData()
|
|
|
|
*/
|
|
|
|
public function testHMAC($key, $message, $result)
|
|
|
|
{
|
|
|
|
$this->assertHMACsTo($this->getInstance(), $key, $message, $result);
|
|
|
|
}
|
2012-08-20 11:49:41 +00:00
|
|
|
|
2014-02-15 18:57:49 +00:00
|
|
|
static public function hmacData()
|
|
|
|
{
|
|
|
|
return array(
|
|
|
|
array('', '', '74e6f7298a9c2d168935f58c001bad88'),
|
|
|
|
array('key', 'The quick brown fox jumps over the lazy dog', '80070713463e7749b90c2dc24911e275'),
|
|
|
|
);
|
|
|
|
}
|
2012-08-20 11:49:41 +00:00
|
|
|
}
|