Timeouts and keepalive?

2003-10-13 Thread Zac Hansen
are there issues with SSL connections that are seldom used timing out? Is there a keepalive option to turn on somewhere to fix a problem like this? Our high-throughput connections work great, but our seldom used ones tend to stop working and require a reconnect. --Zac ___

Getting "SSL3_CHECK_CERT_AND_ALGORITHM:missing export tmp rsa key" after upgrading to 0.9.6k

2003-10-13 Thread Melnick, Jeff
We've been successfully using OpenSSL 0.9.6x for quite a number of revisions and have had no problems upgrading from one version to the next.However after upgrading to 0.9.6k we are getting this"SSL3_CHECK_CERT_AND_ALGORITHM:missing export tmp rsa key" error fromour clients when they try to c

object file formats

2003-10-13 Thread Jeff Liesmaki
Hi all, I am trying to build the openssl libraries for VxWorks. My host computer is a pc running Windows 2000 and my target is a pentium pc. I have Vxworks 5.4 and Tornado 2.02. I have downloaded cygwin and run configure. I have edited the make file to use the compiler that came with To

Non-blocking fds: select() finds writeable socket, but SSL_write hangs

2003-10-13 Thread KOverton
(Sorry about the last re-sending of Peter's message.) > In case of a SSL_WANT_READ/WANT_WRITE error, what are you doing > as a reaction? > > You have to select and then repeat exactly the last operation. > > So if you do an SSL_write and get SSL_WANT_READ, you select > and then repeat the SSL_w

Non-blocking fds: select() finds writeable socket, but SSL_write hangs

2003-10-13 Thread KOverton
In case of a SSL_WANT_READ/WANT_WRITE error, what are you doing as a reaction? You have to select and then repeat exactly the last operation. So if you do an SSL_write and get SSL_WANT_READ, you select and then repeat the SSL_write operation. At least this is what I rememember.

Non-blocking fds: select() finds writeable socket, but SSL_write hangs

2003-10-13 Thread KOverton
OpenSSL 0.9.6c, Windows98, Visual C++6.0. A funny predicament.  I'm creating a socket and setting it in the SSL system via SSL_set_fd() -- I'm not using BIOs.  This is a very simple client to download a web-page from a server in a one-off, HTTP/1.0 manner. I set my socket non-blocking, connect t

Problem to use BN_exp()...

2003-10-13 Thread Yoo, Sangkeun
Hi all... Does it take long time to compute BN_exp()? #include #include int main() { BIGNUM *a,*b,*c; BN_CTX *bnctx; bnctx=BN_CTX_new(); a=BN_new(); b=BN_new(); c=BN_new(); BN_rand(a,20,0,0); printf("\nNUM A : ")