1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/ext/hash
Nikita Popov 06bbb657ad Fix hash_pbkdf2() with missing $length argument
Also change the type of some string length variables to ensure
that the zpp call works correctly on platforms where sizeof(int)
!= sizeof(long).
2014-03-12 14:16:18 +01:00
..
2005-12-02 01:59:48 +00:00
2012-01-18 09:15:34 +00:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2005-12-07 19:53:34 +00:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2005-12-02 01:59:48 +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.