Hi:
I have written a web browser like application that uses OpenSSL to
communicate with web servers.
I find it really slow. I tracked it down to 12 - 13 seconds in SSL_read
to read a few K of data.
Does anybody have any ideas as to why it would take so long?
Thanks
_
OK. I found it. I had the listening socket as the socket to
SSL_set_fd. That's wrong. I meant to pass the accepted socket.
Thanks
Jason Jesso wrote:
In a nutshell, this is what I have in a "ServerSocket" C++ class.
sslContext = SSL_CTX_new( SSLv23_server_method()
In a nutshell, this is what I have in a "ServerSocket" C++ class.
sslContext = SSL_CTX_new( SSLv23_server_method() );
if ( sslContext == NULL ){
if ( sslErrorLog ) ERR_print_errors_fp( sslErrorLog );
BUG0( throwing JJSocketException - 4 )
One more thing.
The error string is:
"error:0002:lib(0):func(0):system lib"
Thanks
Jason Jesso wrote:
My call to SSL_accept is giving a ERR_LIB_SYS.
What could be causing this? I wrote other applications on the same
host that use the same code and it works fine.
The a
My call to SSL_accept is giving a ERR_LIB_SYS.
What could be causing this? I wrote other applications on the same host
that use the same code and it works fine.
The application that's giving me this error is written in C++ and the
one that works is written in C.
__
I have a ssl server written in C that uses openssl. I have a ssl
client in Java that uses JSSE.
On the server side SSL_accept fails and the error message is:
error:14094416:SSL routines:SSL3_READ_BYTES:sslv3 alert certificate
unknown
How can I fix this?
My client code is:
===
imp
{print $NF}'
to see a list of symbols exported by shared objects in
your archives.
Michael Wojcik
Principal Software Systems Developer, Micro Focus
Department of English, Miami University
> -Original Message-
> From: Jason Jesso [mailto:[EMAIL PROTECTED]]
> Sent: Thursday
Did this:
dump -Tv *.a | grep shr.o
Don't see any shrared library.
"Chapman, Kyle" wrote:
>
>
> they will be *.a files... do dump -Tv on the *.a files in your
> openssl install libdir...
>
> -----Original Message-
> From: Jason Jesso [mailto:[EMAIL
Hi:
I have configured and compiled openssl-0.9.6 on AIX 4.3.3 using the
following:
./config --prefix=~/opensll --openssldir=~/opensll threads shared
make
I cannot find the shared libraries. Is this not compatible with AIX or
something?
Thanks
Jason
_