Completion Notification (again)

2002-04-29 Thread agent
Hello. I am implementing openssl app which uses async windows sockets(nonblocking) and I am wondering whether openssl has any completion notification like a callback function to signal that the connection stage has been completed, or there is information ready to read. I cannot use Winsock IO Com

Compiler-Probleme mit Borland C++

2002-04-29 Thread Wolfram Klüber
Hallo zusammen, auf Windows2000 habe ich erfolgreich die openssl 0.9.6c-Version compilieren können. So weit so gut. Wenn ich mit dem Borland C++ - Entwicklungsumgebung ein neues Projekt anlege und ein Beispielprogramm für Windows (ssl_server)in das Projekt lade und compiliere, dann bekomme ich je

Re: Trouble with compiling OpenSSL with zlib 1.1.4 support on Linux

2002-04-29 Thread Andrei V. Dmitriev
Hi! Simply make a link to zlib library like this: ln -s /usr/local/lib/zlib-1.1.3 /path/where/must/be/libz.a Good luck! Bogus?aw Brandys wrote: > hi, > i have trouble with compiling openSSL 0.9.7 snapshot from 26 April on > Linux (RedHat 7.1) with zlib 1.1.4 support (not dynamic).It simply ca

Trouble with compiling OpenSSL with zlib 1.1.4 support on Linux

2002-04-29 Thread Bogusław Brandys
hi, i have trouble with compiling openSSL 0.9.7 snapshot from 26 April on Linux (RedHat 7.1) with zlib 1.1.4 support (not dynamic).It simply can't locate libz.a library .Where this library should be ? After compiling and instaling zlib 1.1.4 I have it in /usr/local/lib. Best Regards Boguslaw

Re: Server side code for OpenSSL

2002-04-29 Thread amit limaye
well srikanth there is a server code in the apps of the ssl distribution try looking at the file s_server.c should help u The thing also try getting the errors from the SSL library there is something called SSL_get_Error takes 2 parameters and ERR_error_string which will

Re: check private and public keys

2002-04-29 Thread Andrei V. Dmitriev
Hi! Sign some document by the private key, taken from some of your files and then try to verify signature produced by previus operation. If signature is correct that means you find the pair. Else try find next pair. good luck :)) Lidia wrote: > Hi, > In my app I store in different files priva

check private and public keys

2002-04-29 Thread Lidia
Hi, In my app I store in different files private and public key. After, the user can select a private key from a list and a public key, too. I need check if the public and private key belong to the same pair keys (if the public/private key are associate). Regards, lidia My english is horrib

Server side code for OpenSSL

2002-04-29 Thread Srikanth_Chakravarthy
Hi all, I am trying to write a server that coneects using winsock and talks to a client using openssl methods. Could anybody tell me the actual flow of writing the server? I have written the following code, but it always fails at SSL_accept. m_SSLMethod = TLSv1_server_method(); m_SSLC

Re: dlopen: Cannot map library libssl.so

2002-04-29 Thread Andrei V. Dmitriev
hi! you must to install apache like that way: cd ./apache ./configure --prefix=./ --enable-module=so --enable-module=ssl make make install good luck! //Andrei Bossi Camille wrote: > Hello, > > I'm installing apache_1.3.24, modssl-2.8.8-1.3.24 and openssl-engine-0.9.6c > on Compaq Tru64 UNIX

RE: Key strength confusion

2002-04-29 Thread John . Airey
A quick search found the reseller for Verisign for the Asia/Pacific region. Their site describes their SSL certificates as 128bit and 40bit at http://www.esign.com.au/server/. Worse still, they describe the 40bit certificate as "standard". (I do wonder why people just don't buy the cheaper Thawte

MSIE5.0

2002-04-29 Thread amit limaye
hello i am facing some problems when i use my server with IE the server seems to workfine when i use netscape 6.2 to send the request while the data cannotbe read when i send the requestusing IE in both cases SSL_Accept suceeds but SSL_read does not return any data when the client is a

RE: Can I use SOCKET type (in Windows) in OpenSSL ?

2002-04-29 Thread Kamp, Michael
>From the winsocket.h file: /* * Basic system type definitions, taken from the BSD file sys/types.h. */ typedef unsigned char u_char; typedef unsigned short u_short; typedef unsigned intu_int; typedef unsigned long u_long; /* * The new type to be used in all * instances which refer

Re: Can I use SOCKET type (in Windows) in OpenSSL ?

2002-04-29 Thread Rihards Freimanis
winsock.h typedef unsigned intu_int; typedef u_int SOCKET; it is unsigned integer >>> [EMAIL PROTECTED] 04/29/02 10:37 >>> Hi, In Windows function socket() returns SOCKET data type (not simple int). Can I use it in OpenSSL functions ? Boguslaw Brandys -- Encyklopedia multim

Can I use SOCKET type (in Windows) in OpenSSL ?

2002-04-29 Thread Bogusław Brandys
Hi, In Windows function socket() returns SOCKET data type (not simple int). Can I use it in OpenSSL functions ? Boguslaw Brandys -- Encyklopedia multimedialna w prezencie! http://www.e-mail.onet.pl __ OpenSSL Project