Re: [PHP] Re: Delay at first use of OpenSSL functions

2005-01-18 Thread Marek Kilimajer
Vladas Shukevichus wrote: Thanks a lot for such a superb explanation! It's clear now why OpenSSL gather entropy for such a long time, it just doesn't have any external source of it. But I still need my scripts run as fast as possible :) There are Windows 2003 + IIS6, so there are no any dev/random

Re: Re: Re: [PHP] Re: Delay at first use of OpenSSL functions

2005-01-18 Thread Vladas Shukevichus
Thanks a lot for such a superb explanation! It's clear now why OpenSSL gather entropy for such a long time, it just doesn't have any external source of it. But I still need my scripts run as fast as possible :) There are Windows 2003 + IIS6, so there are no any dev/random device, OpenSSL use by de

Re: [PHP] Re: Delay at first use of OpenSSL functions

2005-01-18 Thread Bret Hughes
On Tue, 2005-01-18 at 14:34, Marek Kilimajer wrote: > Bret Hughes wrote: > > > > Having said all this, you might try moving the server mouse around > > immediatly before and during the transaction to see if its faster. > > Or hire a monkey :) Hmm. depending on the current cost of Purina Monkey C

Re: [PHP] Re: Delay at first use of OpenSSL functions

2005-01-18 Thread Marek Kilimajer
Bret Hughes wrote: Having said all this, you might try moving the server mouse around immediatly before and during the transaction to see if its faster. Or hire a monkey :) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Delay at first use of OpenSSL functions

2005-01-18 Thread Marek Kilimajer
Vladas Shukevichus wrote: 18.01.2005 18:06:31 Marek Kilimajer <[EMAIL PROTECTED]> wrote in message <[EMAIL PROTECTED]> M. Sokolewicz wrote: didn't you read what wez said? they're gathering entropy... you *can't* (and shouldn't want to) prevent that. Or get some good entropy source Can you expla

Re: Re: [PHP] Re: Delay at first use of OpenSSL functions

2005-01-18 Thread Bret Hughes
On Tue, 2005-01-18 at 11:45, Vladas Shukevichus wrote: > 18.01.2005 18:06:31 > Marek Kilimajer <[EMAIL PROTECTED]> wrote in message > <[EMAIL PROTECTED]> > > > M. Sokolewicz wrote: > > > didn't you read what wez said? they're gathering entropy... you > *can't* > > > (and shouldn't want to) preve

[PHP] Re: Delay at first use of OpenSSL functions

2005-01-18 Thread M. Sokolewicz
well, since it's the openSSL library that's gathering it, that means ou can't control it with PHP itself. If you want to somehow change that process, either modify the library, or (if it's changable via the PHP extension,) modify the PHP extension for openSSL. Point is, there isn't (AFAIK/AFAIC

Re: Re: [PHP] Re: Delay at first use of OpenSSL functions

2005-01-18 Thread Vladas Shukevichus
18.01.2005 18:06:31 Marek Kilimajer <[EMAIL PROTECTED]> wrote in message <[EMAIL PROTECTED]> > M. Sokolewicz wrote: > > didn't you read what wez said? they're gathering entropy... you *can't* > > (and shouldn't want to) prevent that. > > > > Or get some good entropy source Can you explain thi

Re: [PHP] Re: Delay at first use of OpenSSL functions

2005-01-18 Thread Marek Kilimajer
M. Sokolewicz wrote: didn't you read what wez said? they're gathering entropy... you *can't* (and shouldn't want to) prevent that. Or get some good entropy source -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Delay at first use of OpenSSL functions

2005-01-18 Thread M. Sokolewicz
didn't you read what wez said? they're gathering entropy... you *can't* (and shouldn't want to) prevent that. Vladas Shukevichus wrote: Hello, Gents, When I use any OpenSSL encryption/decryption function (like openssl_seal, openssl_open, openssl_public_encrypt, openssl_private_decrypt, etc.) it t