php-src/ext/hash
Sara Golemon 7ad4fb0c27 Add HAVAL algorithm
Bit widths: 128, 160, 192, 224, 256
Passes: 3, 4, 5
2005-11-20 20:14:22 +00:00
..
tests Add HAVAL algorithm 2005-11-20 20:14:22 +00:00
config.m4 Add HAVAL algorithm 2005-11-20 20:14:22 +00:00
config.w32 Add HAVAL algorithm 2005-11-20 20:14:22 +00:00
CREDITS
EXPERIMENTAL
hash_haval.c Add HAVAL algorithm 2005-11-20 20:14:22 +00:00
hash_md.c Add HMAC support 2005-11-18 20:58:54 +00:00
hash_ripemd.c Add HMAC support 2005-11-18 20:58:54 +00:00
hash_sha.c One last 64bit change, skip all this long long malarkey when we're on 64bit procs 2005-11-18 21:37:19 +00:00
hash.c Add HAVAL algorithm 2005-11-20 20:14:22 +00:00
package.xml Add HAVAL algorithm 2005-11-20 20:14:22 +00:00
php_hash_haval.h Add HAVAL algorithm 2005-11-20 20:14:22 +00:00
php_hash_md.h
php_hash_ripemd.h
php_hash_sha.h One last 64bit change, skip all this long long malarkey when we're on 64bit procs 2005-11-18 21:37:19 +00:00
php_hash.h Add HAVAL algorithm 2005-11-20 20:14:22 +00:00
README

Generic hashing framework for PHP

Simplest usages:

$digest = hash($algoname, $message);
$digest = hash_file($algoname, $filename);

Examples:

$digest = hash('md5', 'The quick brown fox jumped over the lazy dog.');

Feeder usage:

$context = hash_init($algoname);
hash_update($context, $message);
$digest = hash_final($context);

hash(), hash_file(), and hash_final() each support an optional boolean parameter $raw_output which behaves in the same 
manner as sha1()'s optional parameter.