Re: [PHP-DEV] Fwd: Proper VARIANT to use for System.Security.Cryptography.RNGCryptoServiceProvider?

2015-10-20 Thread Pierre Joye
On Oct 20, 2015 5:44 PM, "Pierre Joye" wrote: > > Hi, > > On Oct 19, 2015 9:52 PM, "Scott Arciszewski" wrote: > > > > Okay, I've tried both wind...@lists.php.net and > > php.wind...@lists.php.net and I give up trying there. > > > > -- > > > > Since

Re: [PHP-DEV] Fwd: Proper VARIANT to use for System.Security.Cryptography.RNGCryptoServiceProvider?

2015-10-20 Thread Pierre Joye
Hi, On Oct 19, 2015 9:52 PM, "Scott Arciszewski" wrote: > > Okay, I've tried both wind...@lists.php.net and > php.wind...@lists.php.net and I give up trying there. > > -- > > Since CAPICOM is deprecated, for users without ext/mcrypt or > ext/openssl, I'd like

[PHP-DEV] Re: [PHP-CVS] com php-src: FPM: change "listen = port" behavior from IPv4 catch-all to IPv6 catch-all (+ IPv4-mapped): UPGRADING sapi/fpm/fpm/fpm_sockets.c sapi/fpm/php-fpm.conf.in

2015-10-20 Thread Remi Collet
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Le 20/10/2015 15:34, Antony Dovgal a écrit : > Hello Remi. > > I do understand that I'm a bit late with this one, but this patch > actually FORCES IPv6 for port-only syntax. I've got both IPv6 and > IPv4 configured and getaddrinfo() returns only 1

[PHP-DEV] Issues with exceptions and overloading opcodes

2015-10-20 Thread Derick Rethans
Hi! When hacking on Xdebug for PHP 7, I ran into some issues where PHP would just spin around. This happens when there is an exception, and I use overloaded opcodes. I wrote a small example extension at https://github.com/derickr/php-minimal-opcode-overloading-example with a test case

[PHP-DEV] [RFC] [VOTE] Class Constant Visibility

2015-10-20 Thread Sean DuBois
Hey list, Time for a simple RFC (in theory)! I would like to add visibility modifiers to class constants, and then as a nice added bonus give more info from the Reflection API (constants now are a dedicated class so nice things like doc comments) https://wiki.php.net/rfc/class_const_visibility

Re: [PHP-DEV] Issues with exceptions and overloading opcodes

2015-10-20 Thread Bob Weinand
> Am 20.10.2015 um 18:08 schrieb Derick Rethans : > > On Tue, 20 Oct 2015, Bob Weinand wrote: > >>> Am 20.10.2015 um 17:11 schrieb Xinchen Hui : >>> >>> On Tue, Oct 20, 2015 at 10:45 PM, Derick Rethans >> > wrote: >>>

[PHP-DEV] Karma to vote on (my own) RFC and access to phpng-upgrading

2015-10-20 Thread Sean DuBois
Hey list, I just created an RFC, and don't have karma to vote on it https://wiki.php.net/rfc/class_const_visibility Also I would like to be able to edit https://wiki.php.net/phpng-upgrading One of the most frustrating changes for extensions was that 's' and 'p' were changed from 'int' ->

[PHP-DEV] Benchmark Results for PHP Master 2015-10-20

2015-10-20 Thread lp_benchmark_robot
Results for project PHP master, build date 2015-10-20 13:49:39+03:00 commit: 1146f4e84844502d5dd763ac56d25644b72d7cd5 revision date: 2015-10-20 16:59:03+08:00 environment:Haswell-EP cpu:Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz 2x18 cores, stepping 2, LLC 45 MB

Re: [PHP-DEV] Issues with exceptions and overloading opcodes

2015-10-20 Thread Bob Weinand
> Am 20.10.2015 um 17:11 schrieb Xinchen Hui : > > Hey: > > > > On Tue, Oct 20, 2015 at 10:45 PM, Derick Rethans > wrote: > >> Hi! >> >> When hacking on Xdebug for PHP 7, I ran into some issues where PHP would >> just spin around.

Re: [PHP-DEV] Issues with exceptions and overloading opcodes

2015-10-20 Thread Derick Rethans
On Tue, 20 Oct 2015, Bob Weinand wrote: > > Am 20.10.2015 um 17:11 schrieb Xinchen Hui : > > > > On Tue, Oct 20, 2015 at 10:45 PM, Derick Rethans > > wrote: > > > >> When hacking on Xdebug for PHP 7, I ran into some issues where PHP >

[PHP-DEV] Re: Issues with exceptions and overloading opcodes

2015-10-20 Thread Xinchen Hui
+bob On Tue, Oct 20, 2015 at 11:11 PM, Xinchen Hui wrote: > Hey: > > > > On Tue, Oct 20, 2015 at 10:45 PM, Derick Rethans wrote: > >> Hi! >> >> When hacking on Xdebug for PHP 7, I ran into some issues where PHP would >> just spin around. This happens when

Re: [PHP-DEV] Password_hash salt generation refactor

2015-10-20 Thread Tom Worster
On 10/19/15, 6:43 PM, "Ángel González" wrote: >Tom Worster wrote: > > I've verified that password_hash() without /dev/urandom can > produce systematically predictable salts, repeating a sequence of > just two salts. There's nothing statistical involved.

RE: [PHP-DEV] Password_hash salt generation refactor

2015-10-20 Thread Anatol Belski
Hi Anthony, > -Original Message- > From: Anthony Ferrara [mailto:ircmax...@gmail.com] > Sent: Monday, October 19, 2015 1:00 AM > To: internals@lists.php.net > Subject: [PHP-DEV] Password_hash salt generation refactor > > All, > > With PHP 7 comes random_bytes and random_int. This

[PHP-DEV] php wiki registration

2015-10-20 Thread Félix Gagnon
Hey there. I just registered a wiki account with Zvax as username. I intend mostly to continue hanging around on stack overflow's chat room as this is where I've started being aware of all the internals discussions and implications, see what's up with having a wiki account, and discover in time

[PHP-DEV] Re: Issues with exceptions and overloading opcodes

2015-10-20 Thread Xinchen Hui
Hey: On Tue, Oct 20, 2015 at 10:45 PM, Derick Rethans wrote: > Hi! > > When hacking on Xdebug for PHP 7, I ran into some issues where PHP would > just spin around. This happens when there is an exception, and I use > overloaded opcodes. I wrote a small example extension at >

[PHP-DEV] Re: Issues with exceptions and overloading opcodes

2015-10-20 Thread Derick Rethans
On Wed, 21 Oct 2015, Dmitry Stogov wrote: > > On Oct 20, 2015 6:11 PM, "Xinchen Hui" wrote: > > > On Tue, Oct 20, 2015 at 10:45 PM, Derick Rethans wrote: > > > >> When hacking on Xdebug for PHP 7, I ran into some issues where PHP > >> would just spin around.

[PHP-DEV] Re: [PHP-CVS] com php-src: FPM: change "listen = port" behavior from IPv4 catch-all to IPv6 catch-all (+ IPv4-mapped): UPGRADING sapi/fpm/fpm/fpm_sockets.c sapi/fpm/php-fpm.conf.in

2015-10-20 Thread Antony Dovgal
Hello Remi. I do understand that I'm a bit late with this one, but this patch actually FORCES IPv6 for port-only syntax. I've got both IPv6 and IPv4 configured and getaddrinfo() returns only 1 address - the IPv6 one. This happens because "::" seems to be a shorthand for "::1". So when no