On Sat, Jan 11, 2003 at 12:23:12AM -0800, Raymond C.Rodgers wrote:
> I've managed to get OpenSSL 0.9.7 compiled and installed on a BeOS R5.0.x
> system with BONE (a networking stack), but I'm not able to use OpenSSL for
> reasons I've yet to determine. When I start up a freshly compiled app that
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Version 4.04, 2003.01.12, urgency: MEDIUM:
* New feature sponsored by SURFnet http://www.surfnet.nl/
- Encrypted private key can be used with Win32 GUI.
* New features
- New 'options' configuration option to setup
OpenSSL library hacks with SSL
Michal Trojnara wrote:
>
> Version 4.04, 2003.01.12
...
Downloaded stunnel-4.04.exe to a Win 2K system.
Tried to run it as "stunnel -help". Got nothing.
Furthermore, looking at the source, as far as I can tell,
when compiling for WIN32, no main procedure is compiled.
What am I missing?
Bill.
first of all - you can initialize SSL context once per
process - and reuse it on every incoming or outgoing
connection request.
So you can remove :
SSL_library_init();
ERR_load_crypto_strings();
SSL_load_error_strings();
ssl_context = SSL_CTX_new( SSLv3_method() );
from your connect functions.
2. N