php-src/ext/hash
2005-11-18 19:51:09 +00:00
..
tests Initial Commit 2005-11-18 19:51:09 +00:00
config.m4 Initial Commit 2005-11-18 19:51:09 +00:00
config.w32 Initial Commit 2005-11-18 19:51:09 +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_md.c Initial Commit 2005-11-18 19:51:09 +00:00
hash_ripemd.c Initial Commit 2005-11-18 19:51:09 +00:00
hash_sha.c Initial Commit 2005-11-18 19:51:09 +00:00
hash.c Initial Commit 2005-11-18 19:51:09 +00:00
package.xml Initial Commit 2005-11-18 19:51:09 +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_sha.h Initial Commit 2005-11-18 19:51:09 +00:00
php_hash.h Initial Commit 2005-11-18 19:51:09 +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.