php-src/ext/hash
Stanislav Malyshev 9b1a224d4e Merge branch 'PHP-5.6'
* PHP-5.6: (21 commits)
  fix unit tests
  update NEWS
  add NEWS for fixes
  Improve fix for #70172
  Fix bug #70312 - HAVAL gives wrong hashes in specific cases
  fix test
  add test
  Fix bug #70366 - use-after-free vulnerability in unserialize() with SplDoublyLinkedList
  Fix bug #70365 - use-after-free vulnerability in unserialize() with SplObjectStorage
  Fix bug #70172 - Use After Free Vulnerability in unserialize()
  Fix bug #70388 - SOAP serialize_function_call() type confusion
  Fixed bug #70350: ZipArchive::extractTo allows for directory traversal when creating directories
  Improve fix for #70385
  Fix bug #70345 (Multiple vulnerabilities related to PCRE functions)
  Fix bug #70385 (Buffer over-read in exif_read_data with TIFF IFD tag byte value of 32 bytes)
  Fix bug #70219 (Use after free vulnerability in session deserializer)
  Fix bug ##70284 (Use after free vulnerability in unserialize() with GMP)
  Fix for bug #69782
  Add CVE IDs asigned (post release) to PHP 5.4.43
  Add CVE IDs asigned to #69085 (PHP 5.4.39)
  ...

Conflicts:
	ext/exif/exif.c
	ext/gmp/gmp.c
	ext/pcre/php_pcre.c
	ext/session/session.c
	ext/session/tests/session_decode_variation3.phpt
	ext/soap/soap.c
	ext/spl/spl_observer.c
	ext/standard/var.c
	ext/standard/var_unserializer.c
	ext/standard/var_unserializer.re
	ext/xsl/xsltprocessor.c
2015-09-02 00:37:20 -07:00
..
tests Merge branch 'PHP-5.6' 2015-09-02 00:37:20 -07:00
bench.php
config.m4 Merge branch '2Guploads' 2013-08-09 11:47:25 +02:00
config.w32 unify stdint type usage 2013-08-06 22:49:56 +02:00
CREDITS
hash_adler32.c bump year 2015-01-15 23:27:30 +08:00
hash_crc32.c bump year 2015-01-15 23:27:30 +08:00
hash_fnv.c bump year 2015-01-15 23:27:30 +08:00
hash_gost.c bump year 2015-01-15 23:27:30 +08:00
hash_haval.c Merge branch 'PHP-5.6' 2015-09-02 00:37:20 -07:00
hash_joaat.c bump year 2015-01-15 23:27:30 +08:00
hash_md.c int -> size_t 2015-01-20 22:53:11 -08:00
hash_ripemd.c bump year 2015-01-15 23:27:30 +08:00
hash_sha.c int -> size_t 2015-01-20 22:51:09 -08:00
hash_snefru.c bump year 2015-01-15 23:27:30 +08:00
hash_tiger.c bump year 2015-01-15 23:27:30 +08:00
hash_whirlpool.c bump year 2015-01-15 23:27:30 +08:00
hash.c remove TSRMLS_* 2015-08-02 13:42:01 +02:00
package.xml unify stdint type usage 2013-08-06 22:49:56 +02:00
php_hash_adler32.h bump year 2015-01-15 23:27:30 +08:00
php_hash_crc32_tables.h bump year 2015-01-15 23:27:30 +08:00
php_hash_crc32.h bump year 2015-01-15 23:27:30 +08:00
php_hash_fnv.h bump year 2015-01-15 23:27:30 +08:00
php_hash_gost_tables.h trailing whitespace removal 2015-01-10 15:07:38 -08:00
php_hash_gost.h bump year 2015-01-15 23:27:30 +08:00
php_hash_haval.h bump year 2015-01-15 23:27:30 +08:00
php_hash_joaat.h bump year 2015-01-15 23:27:30 +08:00
php_hash_md.h bump year 2015-01-15 23:27:30 +08:00
php_hash_ripemd.h bump year 2015-01-15 23:27:30 +08:00
php_hash_sha.h bump year 2015-01-15 23:27:30 +08:00
php_hash_snefru_tables.h bump year 2015-01-15 23:27:30 +08:00
php_hash_snefru.h bump year 2015-01-15 23:27:30 +08:00
php_hash_tiger_tables.h bump year 2015-01-15 23:27:30 +08:00
php_hash_tiger.h bump year 2015-01-15 23:27:30 +08:00
php_hash_whirlpool_tables.h bump year 2015-01-15 23:27:30 +08:00
php_hash_whirlpool.h bump year 2015-01-15 23:27:30 +08:00
php_hash.h cleanup the mod version macros, round 2 2015-03-23 20:33:54 +01:00
README

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.