Re: Regarding OpenSSL communication

2007-08-23 Thread Marek Marcola
Hello, > I request you to please have mercy on me. I have > to communicate to SSL v3 Server using SSL v3 Client Hello Message. The > following is my client hello message: > > > > "\x01" > "\x03\x01" /* SSL Version */ > "\x40\x7b\xab\x

Re: Regarding OpenSSL communication

2007-08-23 Thread Suchindra Chandrahas
Hi Marek, I request you to please have mercy on me. I have to communicate to SSL v3 Server using SSL v3 Client Hello Message. The following is my client hello message: "\x01" "\x03\x01" /* SSL Version */ "\x40\x7b\xab\xc0" /*

Re: Regarding OpenSSL communication

2007-08-23 Thread Marek Marcola
Hello, >I am using the following client hello message format for an > SSL V3 Server: > > > > unsigned char buf[BUFSIZE] = > "\x01" /* client hello msg */ > > "\x03\x00" /* client version */ > "\x00\x1

Re: TLS server crashes when Major version number is not 3

2007-08-23 Thread Marek Marcola
Hello, > It seems the OpenSSL TLS server, when forced to use TLSv1, > shuts down the connection immediately after receiving a > ClientHello with major version number not equal to 0x03. > Nothing was sent to the client to notify the error. > > >>> What could be sent

Re: Regarding OpenSSL communication

2007-08-23 Thread Suchindra Chandrahas
Hi Lutz, I am using the following handshake for communication in ssl v2: CLIENT SERVER -- -- client hello = {session id

Re: openssl for embedded devices

2007-08-23 Thread Lutz Jaenicke
Michael Bradley Jr wrote: > Marek Marcola wrote: >> Hello, >> >>> are there some available settings to build openssl for small >>> footprint applications and devices? >>> I mean to get a smaller library like matrixssl [1] and strip thing >>> and module out someone might not need ? >>> >> In

Re: openssl for embedded devices

2007-08-23 Thread Michael Bradley Jr
Marek Marcola wrote: Hello, are there some available settings to build openssl for small footprint applications and devices? I mean to get a smaller library like matrixssl [1] and strip thing and module out someone might not need ? In my personal opinion: no. (This is why MatrixSSL was

Re: Regarding OpenSSL communication

2007-08-23 Thread Lutz Jaenicke
Suchindra Chandrahas wrote: > Hi all, >I am using the following client hello message format > for an SSL V3 Server: > > > > unsigned char buf[BUFSIZE] = > "\x01" /* client hello msg */ > > "\x03\x00" /* client version */

Regarding OpenSSL communication

2007-08-23 Thread Suchindra Chandrahas
Hi all, I am using the following client hello message format for an SSL V3 Server: unsigned char buf[BUFSIZE] = "\x01" /* client hello msg */ "\x03\x00" /* client version */ "\x00\x18" /*

Re: TLS server crashes when Major version number is not 3

2007-08-23 Thread Lutz Jaenicke
Marek Marcola wrote: > Hello, > It seems the OpenSSL TLS server, when forced to use TLSv1, shuts down the connection immediately after receiving a ClientHello with major version number not equal to 0x03. Nothing was sent to the client to notify the error. >>> Wh