Re: Using shared libraries instead of static ones...

2001-08-23 Thread Carlo Medas
sl-0.9.6b$ ./config shared > erik@tarzan:~/openssl-0.9.6b$ make > > Cheers, > > Erik > > On Thu, 23 Aug 2001, Carlo Medas wrote: > > > I wanna use shared lib... > > I've read that I've to specify it when i do the Configure command... > > S

Re: How to have non-blocking communication

2001-08-23 Thread Carlo Medas
Here is an example of setting a socket to non-blocking mode.. int Socket; long save_file_flags; save_file_flags = fcntl(Socket, F_GETFL); save_file_flags |= O_NONBLOCK; fcntl(Socket, F_SETFL, save_file_flags); Carlo Medas - Original Message - From: "A

Re: where to get trusted certificates

2001-08-18 Thread Carlo Medas
Once you locate the certs you need, you have to use SSL_load_verify_locations. You could create a PEM file and put into your cert and the issuer cert, so you can pass this file as argument of the function before... - Original Message - From: "Dr S N Henson" <[EMAIL PROTECTED]> To: <[EMAIL

Reprise of my: Cliet Certificate Verify problems...

2001-08-15 Thread Carlo Medas
ificates Thx all. Carlo Medas

Client certificate verify...

2001-08-14 Thread Carlo Medas
Hi all, I'm using self-singned certificates and when my client connects to the SSL server, he gets the CA, but the result of the verify function is: That CA is not in the list of trusted CAs... How can I add or modify the list of trusted CAs? Thx all   Carlo Medas