1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 10:43:30 +02:00
Files
archived-php-src/ext/hash
Michael Wallner 3da6204bf6 - add salsa implementation
# its not common and I've no reference output to compare against,
# thus it's not enabled; I'm also pretty unsure about the initialization
2005-11-23 17:18:56 +00:00
..
2005-11-22 19:17:58 +00:00
2005-11-20 20:14:22 +00:00
2005-11-18 19:51:09 +00:00
2005-11-18 19:51:09 +00:00
2005-11-22 12:24:25 +00:00
2005-11-22 19:23:55 +00:00
2005-11-21 15:09:58 +00:00
2005-11-23 17:18:56 +00:00
2005-11-22 19:23:55 +00:00
2005-11-23 16:36:11 +00:00
2005-11-20 20:14:22 +00:00
2005-11-20 20:14:22 +00:00
2005-11-18 19:51:09 +00:00
2005-11-18 19:51:09 +00:00
2005-11-23 17:18:56 +00:00
2005-11-22 19:17:58 +00:00
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.