Re: Question about OpenSSL test server

2003-08-23 Thread Carlos G.A.
Hello: I'm rigth ?? if i'm right how can i know the key that is being used for decrypt the message ?? I have my problem fixed yet thanks :) --- Best regards Carlos Guzmán Álvarez Vigo-Spain _ Localiza y ponte en contacto con tus

Re: Question about OpenSSL test server

2003-08-23 Thread Carlos G.A.
Hello: The key derivation and encryption for TLS is done in ssl/t1_enc.c there's actually some debugging code in there already so if you #define TLS_DEBUG it should print out all the keys for you. I'm making more test using debugging features of openssl ( nice features ), i'm trying to build

Re: Question about OpenSSL test server

2003-08-21 Thread Carlos G.A.
Hello: The key derivation and encryption for TLS is done in ssl/t1_enc.c there's actually some debugging code in there already so if you #define TLS_DEBUG it should print out all the keys for you. Thanks very much i will try to do a build using this define :) Best regards Carlos Guzman Alvarez

Re: Question about OpenSSL test server

2003-08-20 Thread Dr. Stephen Henson
On Wed, Aug 20, 2003, Carlos G.A. wrote: > Hello: > > I'm making an implementation of the TLS 1.0 protocol in C#, for testing > it i'm using OpenSSL under Cygwin ( openssl s_server ... ), i have a > question about debug output, there are any way for know what are the > keys that the server is usi

Re: Question about OpenSSL test server

2003-08-20 Thread Carlos G.A.
Hello: www.rtfm.com/ssldump/ Thanks i will try it :) -- Best regards Carlos Guzman Alvarez Vigo-Spain _ Melodías, logos y mil servicios para tu teléfono en MSN Móviles. http://www.msn.es/MSNMovil/ ___

Re: Question about OpenSSL test server

2003-08-20 Thread Ashutosh Jaiswal
Using ssldump might help. It does a lot of decoding of the data exchanged between a client and server. www.rtfm.com/ssldump/ Ashu Carlos G.A. wrote: > Hello: > > I'm making an implementation of the TLS 1.0 protocol in C#, for testing > it i'm using OpenSSL under Cygwin ( openssl s_server ... ),