Re: [openssl-dev] [openssl.org #4060] AutoReply: a crash happened inside SSL_Connect function

2015-10-01 Thread Matt Caswell via RT
On 01/10/15 15:18, Tiantian Liu via RT wrote: > Hi, > > Good morning! Thanks for your response. > > I configured my OpenSSL with '-d' option to enable the debugging information. > Where I don't know how to use it during my application running. Which version of OpenSSL did you download? My

Re: [openssl-dev] [openssl.org #4060] AutoReply: a crash happened inside SSL_Connect function

2015-10-01 Thread Tiantian Liu via RT
That is ok. Just a test card. Thanks for your remainder. While, I am sure installed the OpenSSL1.01p to /usr/lib. Because I configured it with --prefix=/usr/. I can -redo it and confirm. And I will keep updating the ticket. Thanks, Tyler -Original Message- From: Richard Moore via RT

Re: [openssl-dev] [openssl.org #4060] AutoReply: a crash happened inside SSL_Connect function

2015-10-01 Thread Tiantian Liu via RT
Hi, Good morning! Thanks for your response. I configured my OpenSSL with '-d' option to enable the debugging information. Where I don't know how to use it during my application running. So I used gcc GDB function to debug. My application is a multi-process program. I started my application

Re: [openssl-dev] [openssl.org #4055] FIPS Object Module User Guide corrections needed for (*get_entropy)()

2015-10-01 Thread Steve Marquess
On 09/21/2015 08:00 PM, Gibbons, Lee D via RT wrote: > This is to highlight a bug in the FIPS Object Module 2.10 and corrective > documentation in its User Guide. > > The User Guide for the FIPS Object Module 2.10 describes the (*get_entropy)() > callback: > > size_t

Re: [openssl-dev] [openssl.org #4060] AutoReply: a crash happened inside SSL_Connect function

2015-10-01 Thread Viktor Dukhovni
On Thu, Oct 01, 2015 at 06:43:17PM +, Tiantian Liu via RT wrote: > #3 0x004c5e98 in tls1_new (s=0xb4964ec8) at t1_lib.c:154 > #4 0x00300376 in SSL_new () from /usr/lib/libptcoresdk.so.2 > > I found my application called SSL_new from /usr/lib/libptcoresdk.so.2, which > is third party

Re: [openssl-dev] [openssl.org #4060] AutoReply: a crash happened inside SSL_Connect function

2015-10-01 Thread Tiantian Liu via RT
Hi, I did another debug. I found one strange issue, and post the trace information below: Loaded symbols for /usr/lib/libcrypto.so.1.0.0 Loaded symbols for /lib/libdl.so.2 Loaded symbols for /lib/i686/nosegneg/libpthread.so.0 Loaded symbols for /lib/i686/nosegneg/libc.so.6 Loaded symbols

[openssl-dev] [openssl.org #4067] Bug - Header files in include folder differ for different extractiing methods

2015-10-01 Thread Chen, Feng via RT
Hi OpenSSL, I downloaded OpenSSL 1.0.0s.tar.gz and extracted files using following three ways. The header files in "openssl 1.0.0s\include\openssl" folder are different. I am working on Windows 7 Enterprise 64-bits with Service Pack 1. 1. Use Cygwin (version 1.7.25) command "tar xvf" All

[openssl-dev] OCSP - BIO_get_fd fileDescriptor 0 invalid

2015-10-01 Thread vince technical address
Hi, Can you tell me why in the source file "ocsp.c" (apps directory), the test on the return of the function BIO_get_fd defines 0 as an invalid file descriptor? if (BIO_get_fd (CBIO, & fd) <= 0) should be if (BIO_get_fd (CBIO, & fd) <0) Thank you

[openssl-dev] [openssl.org #4068] Bug ocsp - bio_get_fd

2015-10-01 Thread vince technical address via RT
Hi, Can you tell me why in the source file "ocsp.c" (apps directory), the test on the return of the function BIO_get_fd defines 0 as an invalid file descriptor? if (BIO_get_fd (CBIO, & fd) <= 0) should be if (BIO_get_fd (CBIO, & fd) <0) Thank you