/hphp/test/zend/good/ext/hash/tests/hmac-md5.php
http://github.com/facebook/hiphop-php · PHP · 13 lines · 10 code · 2 blank · 1 comment · 0 complexity · 67001b8c0777f447cfc8afaec9c77471 MD5 · raw file
- <?hh
- <<__EntryPoint>> function main(): void {
- /* Test Vectors from RFC 2104 */
- $ctx = hash_init('md5',HASH_HMAC,str_repeat(chr(0x0b), 16));
- hash_update($ctx, 'Hi There');
- echo hash_final($ctx) . "\n";
- $ctx = hash_init('md5',HASH_HMAC,'Jefe');
- hash_update($ctx, 'what do ya want for nothing?');
- echo hash_final($ctx) . "\n";
- echo hash_hmac('md5', str_repeat(chr(0xDD), 50), str_repeat(chr(0xAA), 16)) . "\n";
- }