php-src/ext/hash/tests/hash_hmac_error.phpt

42 lines
1.0 KiB
PHP

--TEST--
Hash: hash_hmac() function : basic functionality
--FILE--
<?php
/*
* proto string hash_hmac ( string algo, string data, string key [, bool raw_output] )
* Function is implemented in ext/hash/hash.c
*/
echo "*** Testing hash_hmac() : error conditions ***\n";
$data = "This is a sample string used to test the hash_hmac function with various hashing algorithms";
$key = 'secret';
echo "\n-- Testing hash_hmac() function with invalid hash algorithm --\n";
try {
var_dump(hash_hmac('foo', $data, $key));
}
catch (\Error $e) {
echo $e->getMessage() . "\n";
}
echo "\n-- Testing hash_hmac() function with non-cryptographic hash algorithm --\n";
try {
var_dump(hash_hmac('crc32', $data, $key));
}
catch (\Error $e) {
echo $e->getMessage() . "\n";
}
?>
===Done===
--EXPECT--
*** Testing hash_hmac() : error conditions ***
-- Testing hash_hmac() function with invalid hash algorithm --
Unknown hashing algorithm: foo
-- Testing hash_hmac() function with non-cryptographic hash algorithm --
Non-cryptographic hashing algorithm: crc32
===Done===