diff options
author | Rasmus Lerdorf <rasmus@php.net> | 2010-03-31 18:03:17 +0000 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 2010-03-31 18:03:17 +0000 |
commit | 9692a3619c8def5f558fabb7b89284e199616587 (patch) | |
tree | 94f9340de073d08093bf2af881300b7d849c7372 /UPGRADING | |
parent | e0f91992c0a416f5bcb13af5b236faefdbc778f2 (diff) | |
download | php-git-9692a3619c8def5f558fabb7b89284e199616587.tar.gz |
Set session.entropy_file to /dev/urandom or /dev/arandom by
default if present at compile-time. Addresses part of bug #51436
Diffstat (limited to 'UPGRADING')
-rwxr-xr-x | UPGRADING | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -40,7 +40,19 @@ UPGRADE NOTES - PHP X.Y default_charset = iso-8859-1 - to your php.ini to preserve pre-PHPX.Y behavior + to your php.ini to preserve pre-PHPX.Y behavior. + +- We now check at compile time if /dev/urandom or /dev/arandom + are present to provide non-blocking entropy to session id + generation. If either is present, session.entropy_file + now defaults to that file and session.entropy_length defaults + to 32. If you do not want extra entropy for your session ids + for some reason, add: + + session.entropy_file= + session.entropy_length=0 + + to your php.ini to preserve pre-PHPX.Y behavior. ============================= 2. Reserved words and classes |