Re: RSA_private_decrypt across processes

2011-05-04 Thread David Schwartz
On 5/4/2011 9:14 AM, Ashwin Chandra wrote: Okay I read the complete bug report and it looks like there is a fix in the latest openssl. However I checked it out and it limits the maximum time RAND_poll will take to a second. 1000ms. Is there any other way to speed this up? Populate the OpenSSL

Re: RSA_private_decrypt across processes

2011-05-04 Thread Michael S. Zick
> the latest openssl. However I checked it out and it limits the > > > maximum > > > > time RAND_poll will take to a second. 1000ms. Is there any other > > > way to > > > > speed this up? > > > > > > > > ---

Re: RSA_private_decrypt across processes

2011-05-04 Thread Michael S. Zick
ms. Is there any other > > way to > > > speed this up? > > > > > > -Original Message- > > > From: owner-openssl-us...@openssl.org > > <mailto:owner-openssl-us...@openssl.org> > > > [owner-openssl-us...@openssl.org

Re: RSA_private_decrypt across processes

2011-05-04 Thread Mounir IDRASSI
[owner-openssl-us...@openssl.org <mailto:owner-openssl-us...@openssl.org>] On Behalf Of Mounir IDRASSI > Sent: Wednesday, May 04, 2011 4:47 AM > To: openssl-users@openssl.org <mailto:openssl-users@openssl.org> > Subject: Re: RSA_private_decrypt across process

Re: RSA_private_decrypt across processes

2011-05-04 Thread carlyoung
openssl.org [2] > [owner-openssl-us...@openssl.org [3]] On Behalf Of Mounir IDRASSI > Sent: Wednesday, May 04, 2011 4:47 AM > To: openssl-users@openssl.org [4] > Subject: Re: RSA_private_decrypt across processes > > Hi, > > This could be related to the slowness of RAND_po

Re: RSA_private_decrypt across processes

2011-05-04 Thread Mounir IDRASSI
wner-openssl-us...@openssl.org [mailto:owner-openssl-us...@openssl.org] On Behalf Of Mounir IDRASSI Sent: Wednesday, May 04, 2011 4:47 AM To: openssl-users@openssl.org Subject: Re: RSA_private_decrypt across processes Hi, This could be related to the slowness of RAND_poll under Windows 7. See : http:/

RE: RSA_private_decrypt across processes

2011-05-04 Thread Ashwin Chandra
[mailto:owner-openssl-us...@openssl.org] On Behalf Of Mounir IDRASSI Sent: Wednesday, May 04, 2011 4:47 AM To: openssl-users@openssl.org Subject: Re: RSA_private_decrypt across processes Hi, This could be related to the slowness of RAND_poll under Windows 7. See : http://rt.openssl.org/Ticket

RE: RSA_private_decrypt across processes

2011-05-04 Thread Ashwin Chandra
Behalf Of Mounir IDRASSI Sent: Wednesday, May 04, 2011 4:47 AM To: openssl-users@openssl.org Subject: Re: RSA_private_decrypt across processes Hi, This could be related to the slowness of RAND_poll under Windows 7. See : http://rt.openssl.org/Ticket/Display.html?id=2100&user=guest&pass=gu

Re: RSA_private_decrypt across processes

2011-05-04 Thread Mounir IDRASSI
Hi, This could be related to the slowness of RAND_poll under Windows 7. See : http://rt.openssl.org/Ticket/Display.html?id=2100&user=guest&pass=guest Your second process is certainly trying to initialize its RNG and that's why you see this delay. Do you confirm that you are executing these pro

Re: RSA_private_decrypt across processes

2011-05-04 Thread derleader mail
I generate an RSA key using RSA_generate_key in one process. I then take the RSA structure that is generated and serialize it and send it to another process via an RPC mechanism. In the other process I then de-serialize the RSA data and use that as input to an RSA_private_decrypt function to de

RSA_private_decrypt across processes

2011-05-03 Thread Ashwin Chandra
I generate an RSA key using RSA_generate_key in one process. I then take the RSA structure that is generated and serialize it and send it to another process via an RPC mechanism. In the other process I then de-serialize the RSA data and use that as input to an RSA_private_decrypt function to decryp