Re: How to attach source code in a debug build(Win32 Visual C++)?

2010-06-21 Thread Jakob Bohm
On 19-06-2010 01:49, Dave Thompson wrote: From: owner-openssl-us...@openssl.org On Behalf Of William A. Rowe Jr. Sent: Friday, 18 June, 2010 00:59 On 6/17/2010 10:10 PM, Dave Thompson wrote: (MSVC++ build) 2. Even if you have symbols, I believe they use relative pathnames,

Auto Reply: Re: How to attach source code in a debug build(Win32 Visual C++)?

2010-06-21 Thread wellen . lau
I am on PTO from 6/21 - 6/25. I will get back to your questions and concerns when I am back. If this is an critical issue, please contact Rahul J oshi[rahul.x.jo...@oracle.com] for immediate assistance. __ OpenSSL Project

How to free SSL_METHOD structure

2010-06-21 Thread Arunkumar Manickam
Hi, What is the function to be called to free SSL_METHOD * created using SSLv23_client_method or other similar methods. Thanks, Arun

Auto Reply: How to free SSL_METHOD structure

2010-06-21 Thread wellen . lau
I am on PTO from 6/21 - 6/25. I will get back to your questions and concerns when I am back. If this is an critical issue, please contact Rahul J oshi[rahul.x.jo...@oracle.com] for immediate assistance. __ OpenSSL Project

Re: How to free SSL_METHOD structure

2010-06-21 Thread Dr. Stephen Henson
On Mon, Jun 21, 2010, Arunkumar Manickam wrote: Hi, What is the function to be called to free SSL_METHOD * created using SSLv23_client_method or other similar methods. There isn't one. It is a static structure. Steve. -- Dr Stephen N. Henson. OpenSSL project core developer. Commercial

Additional checks on peer certificate

2010-06-21 Thread Marcel Fransen
Hi, I want to do some additional checks on the peer certificate, like a hostname check. My first question is how should I get access to the peer certificate in the verify callback: The documentation for X509_STORE_CTX_get_current_cert(ctx); states that in case of no error this may return

Re: How to free SSL_METHOD structure

2010-06-21 Thread jeff
Well that completely screwed up my plans. Am i glad i looked at this thread before creating a disaster. So i was using SSL_METHOD struct to provide a custom implementation of rsa_mod_exp. And this implementation needed to be provided on a per-need basis. After your reply, I quickly ran a test and

questions about RSASSA-PSS

2010-06-21 Thread 芦翔
Hi all, Could anybody please tell me the support status of RSASSA-PSS in openssl with the version after 0.9.8l. If there is the implementation, could you please tell me which functions I can call directly for my project purpose. Thank you so much. Regards,Xiang

Re: questions about RSASSA-PSS

2010-06-21 Thread Mounir IDRASSI
Hi, The low-level functions RSA_padding_add_PKCS1_PSS and RSA_verify_PKCS1_PSS will get the job done. I have wrote last year a sample showing how they work. You can get it here : http://www.idrix.fr/Root/Samples/openssl_pss_signature.c . For high-level function (maybe EVP interface), I will let

Openssl-dtls Client session sends hello in response to server hello.

2010-06-21 Thread Nivedita Melinkeri
Hi All, I am using openssl-0.9.8n with dtls-srtp extension. After upgrading to openssl version 0.9.8n I see a weird problem. This happens only once in a few hundred dtls handshakes. The dtls client sends client hello with 0 session id. The dtls server sends server hello with valid session id.

RE: questions about RSASSA-PSS

2010-06-21 Thread 芦翔
Dear Cheers, Thank you for your help. I have downloaded your code. Thank you so much. Regards,Xiang Date: Tue, 22 Jun 2010 03:46:51 +0200 From: mounir.idra...@idrix.net To: openssl-users@openssl.org Subject: Re: questions about RSASSA-PSS Hi, The low-level functions

RE: questions about RSASSA-PSS

2010-06-21 Thread 芦翔
Dear Mounir IDRASSI, I am sorry for the wrong title in the last email. I read your code. I am not sure about the lower-level encoding method. For RSA_padding_add_PKCS1_PSS,what's the encoding method it use, RSASSA-PKCS1-V1_5 or RSASSA-PSS? I found a email chain in the archive,

Re: How to free SSL_METHOD structure

2010-06-21 Thread Dr. Stephen Henson
On Mon, Jun 21, 2010, jeff wrote: Well that completely screwed up my plans. Am i glad i looked at this thread before creating a disaster. So i was using SSL_METHOD struct to provide a custom implementation of rsa_mod_exp. And this implementation needed to be provided on a per-need basis.