1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/hash
Christopher Jones c6d977dd39 Fix long-standing visual pain point: the misalignment of './configure help' text.
Whitespace changes and a couple of grammar fixes.
2013-08-06 11:06:09 -07:00
..
2013-07-15 00:18:57 -07:00
2012-01-18 09:15:34 +00:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-07-21 20:09:53 -07:00
2005-12-07 19:53:34 +00:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08:00
2013-01-01 16:37:09 +08: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.