1--TEST-- 2Test hash_file() function : basic functionality 3--SKIPIF-- 4<?php extension_loaded('hash') or die('skip: hash extension not loaded.'); ?> 5--FILE-- 6<?php 7 8/* Prototype : string hash_hmac ( string $algo , string $data , string $key [, bool $raw_output ] ) 9 * Description: Generate a keyed hash value using the HMAC method 10 * Source code: ext/hash/hash.c 11 * Alias to functions: 12*/ 13 14echo "*** Testing hash_hmac() : basic functionality ***\n"; 15 16$content = "This is a sample string used to test the hash_hmac function with various hashing algorithms"; 17$key = 'secret'; 18 19echo "adler32: " . hash_hmac('adler32', $content, $key) . "\n"; 20echo "crc32: " . hash_hmac('crc32', $content, $key) . "\n"; 21echo "gost: " . hash_hmac('gost', $content, $key) . "\n"; 22echo "haval128,3: " . hash_hmac('haval128,3', $content, $key) . "\n"; 23echo "md2: " . hash_hmac('md2', $content, $key) . "\n"; 24echo "md4: " . hash_hmac('md4', $content, $key) . "\n"; 25echo "md5: " . hash_hmac('md5', $content, $key) . "\n"; 26echo "ripemd128: " . hash_hmac('ripemd128', $content, $key) . "\n"; 27echo "ripemd160: " . hash_hmac('ripemd160', $content, $key) . "\n"; 28echo "ripemd256: " . hash_hmac('ripemd256', $content, $key) . "\n"; 29echo "ripemd320: " . hash_hmac('ripemd320', $content, $key) . "\n"; 30echo "sha1: " . hash_hmac('sha1', $content, $key) . "\n"; 31echo "sha256: " . hash_hmac('sha256', $content, $key) . "\n"; 32echo "sha384: " . hash_hmac('sha384', $content, $key) . "\n"; 33echo "sha512: " . hash_hmac('sha512', $content, $key) . "\n"; 34echo "snefru: " . hash_hmac('snefru', $content, $key) . "\n"; 35echo "tiger192,3: " . hash_hmac('tiger192,3', $content, $key) . "\n"; 36echo "whirlpool: " . hash_hmac('whirlpool', $content, $key) . "\n"; 37echo "adler32(raw): " . bin2hex(hash_hmac('adler32', $content, $key, TRUE)) . "\n"; 38echo "md5(raw): " . bin2hex(hash_hmac('md5', $content, $key, TRUE)) . "\n"; 39echo "sha256(raw): " . bin2hex(hash_hmac('sha256', $content, $key, TRUE)) . "\n"; 40 41?> 42===Done=== 43--EXPECTF-- 44*** Testing hash_hmac() : basic functionality *** 45adler32: 12c803f7 46crc32: 96859101 47gost: a4a3c80bdf3f8665bf07376a34dc9c1b11af7c813f4928f62e39f0c0dc564dad 48haval128,3: 4d1318607f0406bd1b7bd50907772672 49md2: 6d111dab563025e4cb5f4425c991fa12 50md4: 10cdbfe843000c623f8b8da0d5d20b0b 51md5: 2a632783e2812cf23de100d7d6a463ae 52ripemd128: 26c2f694a65b1928b668cf55f65529b4 53ripemd160: 4b3433ba596ec39692bb7ce760a9ee5fb818113f 54ripemd256: 4e4e5ec19322895a727f272dfe68f87bc1af66cc6ce27c6c1360a5ee78a14b30 55ripemd320: f10a8ff82e828b92a5ff0a02fc9032bc61352d0d824821fc42f7e09cf5b5f41ee59fd33a730d7469 56sha1: 5bfdb62b97e2c987405463e9f7c193139c0e1fd0 57sha256: 49bde3496b9510a17d0edd8a4b0ac70148e32a1d51e881ec76faa96534125838 58sha384: b781415b856744834e532b9899e1aa0bec5a82cf09a838f0a833470468e2a42648a52428cfd9012385d04de5cd9bd122 59sha512: 7de05636b18e2b0ca3427e03f53074af3a48a7b9df226daba4f22324c570638e7d7b26430e214799c9ce0db5ee88dad3292ca0f38bf99b8eaebed59b3a9c140a 60snefru: 67af483046f9cf16fe19f9087929ccfc6ad176ade3290b4d33f43e0ddb07e711 61tiger192,3: 00a0f884f15a9e5549ed0e40ca0190522d369027e16d5b59 62whirlpool: 4a0f1582b21b7aff59bfba7f9c29131c69741b2ce80acdc7d314040f3b768cf5a17e30b74cceb86fbc6b34b1692e0addd5bfd7cfc043d40c0621f1b97e26fa49 63adler32(raw): 12c803f7 64md5(raw): 2a632783e2812cf23de100d7d6a463ae 65sha256(raw): 49bde3496b9510a17d0edd8a4b0ac70148e32a1d51e881ec76faa96534125838 66===Done=== 67