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
___
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
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
(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
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.
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
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 : ")