Re: Renewal of Root CA certificate

2005-01-05 Thread Stephan Tesch
On Tuesday 04 January 2005 04:42, David Schwartz wrote: Hi David, hi Charles, Sorry for not providing more details. The question was more related to what do I have to do in theory to renew the certificate. I now understand that I just have to change the dates of the certificate and

Howto send email through smtp.gmail.com under Windows XP msvc 6.0?

2005-01-05 Thread Peter Sylvester
-- X-Sun-Data-Type: text X-Sun-Data-Description: text X-Sun-Data-Name: text X-Sun-Charset: us-ascii X-Sun-Content-Lines: 22 Not in this way. I think you shouldn't use :smtp but rather the :25 But then later down you miss a layer: A BIO_read does not necessarily give you 'a line' but

OpenSSL: What code to add for proxy use?

2005-01-05 Thread Clemens Chiba
Hi! I use Winsocks and OpenSSL in a client application which simulates HTTPS request, and it works fine as long as I don't use a proxy (proxy name/port same as host name/port). But if I set a proxy it does not work anymore. This is clear because the proxy does not know where to connect to (it

Re: OpenSSL: What code to add for proxy use?

2005-01-05 Thread Graham Leggett
Clemens Chiba said: I use Winsocks and OpenSSL in a client application which simulates HTTPS request, and it works fine as long as I don't use a proxy (proxy name/port same as host name/port). But if I set a proxy it does not work anymore. This is clear because the proxy does not know where

interpreting ssldump results

2005-01-05 Thread Nicolas Pochat-Pochatoux
Hello, I got the following log from ssldump, after unsuccesfuly trying to establish a TLS connection. By seeing it I'm not able to tell the exact reason why the connection fails. In particular the message Unknown SSL content type 114 is for me unclear Can you please help me out??

Fwd: Re: Howto send email through smtp.gmail.com under Windows XP msvc 6.0?

2005-01-05 Thread Serge
Note: forwarded message attached. __ Do you Yahoo!? All your favorites on one personal page – Try My Yahoo! http://my.yahoo.com ---BeginMessage--- It works now! I have successfully sent an email using smtp.gmail.com as for auth login plain,

Verifying the Server I'm Talking With

2005-01-05 Thread Davy Durham
Hi, I'd like to know if something's possible using the openssl SSL library. I have a server running use the OpenSSL library with a cert and private installed. Now the client code (also using the OpenSSL library) so far has just been connecting to the server and assuming that it's really

solution: sending email through smtp.gmail.com under Windows XP msvc 6.0

2005-01-05 Thread Serge
of course there is no check done in this code, just add the check for server answer, and it works! Socket = HttpConnect ("smtp.gmail.com", 465);read = SSL_set_fd(ssl, Socket);read = SSL_connect(ssl);read = SSL_get_error(ssl, read);read = SSL_read(ssl, reply, sizeof(reply));strcpy (reply, "EHLO

RE: interpreting ssldump results

2005-01-05 Thread Henry Su
According Mozilla project, the error is: All the error codes in the following block indicate that the local socket received an SSL3 record or handshake message from the remote peer that it was unable to interpret because the byte that identifies the type of record or message contained an

RE: solution: sending email through smtp.gmail.com under Windows XP msvc 6.0

2005-01-05 Thread David Schwartz
read = SSL_read(ssl, reply, sizeof(reply)); strcpy (reply, encoded_base64_password\n); SSL_write (ssl, reply, strlen (reply)); read = SSL_read(ssl, reply, sizeof(reply)); strcpy (reply, MAIL FROM: [EMAIL PROTECTED]\n); SSL_write (ssl, reply, strlen (reply)); All of the SSL_read

RE: solution: sending email through smtp.gmail.com under Windows XP msvc 6.0

2005-01-05 Thread Serge
oh I know, I just send the piece of code as I test it out, of course, someone needs to refine, to add test for every line of code! to test return code from function. David Schwartz [EMAIL PROTECTED] wrote: read = SSL_read(ssl, reply, sizeof(reply));strcpy (reply,