From 49e22d5bda2b6ec60c752bc03f13cae590918b8f Mon Sep 17 00:00:00 2001 From: Nuno Lopes Date: Thu, 18 Jan 2007 16:40:54 +0000 Subject: [PATCH] session.hash_function supports ext/hash algos in php 6 git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@227526 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/session/ini.xml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/reference/session/ini.xml b/reference/session/ini.xml index edb77216a5..af0f6d5a2d 100644 --- a/reference/session/ini.xml +++ b/reference/session/ini.xml @@ -1,5 +1,5 @@ - +
&reftitle.runtime; &extension.runtime; @@ -627,7 +627,7 @@ session.hash_function - integer + mixed @@ -635,6 +635,13 @@ algorithm used to generate the session IDs. '0' means MD5 (128 bits) and '1' means SHA-1 (160 bits). + + Since PHP 6.0.0 it is also possible to specify any of the algorithms + provided by the hash extension (if it is + available), like sha512 or + whirlpool. A complete list of supported algorithms can + be obtained with the hash_algos function. + This was introduced in PHP 5.