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