php-src/ext/hash
2005-11-24 08:59:54 +00:00
..
tests - add whirlpool algo 2005-11-23 21:15:41 +00:00
config.m4 - add tiger algo 2005-11-24 08:59:54 +00:00
config.w32 - add tiger algo 2005-11-24 08:59:54 +00:00
CREDITS Initial Commit 2005-11-18 19:51:09 +00:00
EXPERIMENTAL Initial Commit 2005-11-18 19:51:09 +00:00
hash_haval.c - avoid segvs 2005-11-22 12:24:25 +00:00
hash_md.c - hexlen is 2*digestlen 2005-11-22 19:23:55 +00:00
hash_ripemd.c - fix a couple of warnings 2005-11-21 15:09:58 +00:00
hash_salsa.c - add salsa implementation 2005-11-23 17:18:56 +00:00
hash_sha.c - hexlen is 2*digestlen 2005-11-22 19:23:55 +00:00
hash_tiger.c - add tiger algo 2005-11-24 08:59:54 +00:00
hash_whirlpool.c - add whirlpool algo 2005-11-23 21:15:41 +00:00
hash.c - add tiger algo 2005-11-24 08:59:54 +00:00
package.xml - add tiger algo 2005-11-24 08:59:54 +00:00
php_hash_haval.h Add HAVAL algorithm 2005-11-20 20:14:22 +00:00
php_hash_md.h Initial Commit 2005-11-18 19:51:09 +00:00
php_hash_ripemd.h Initial Commit 2005-11-18 19:51:09 +00:00
php_hash_salsa.h - add tiger algo 2005-11-24 08:59:54 +00:00
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_tiger_tables.h - add tiger algo 2005-11-24 08:59:54 +00:00
php_hash_tiger.h - add tiger algo 2005-11-24 08:59:54 +00:00
php_hash_whirlpool_tables.h - add whirlpool algo 2005-11-23 21:15:41 +00:00
php_hash_whirlpool.h - add whirlpool algo 2005-11-23 21:15:41 +00:00
php_hash.h - add tiger algo 2005-11-24 08:59:54 +00:00
README Initial Commit 2005-11-18 19:51:09 +00:00

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.