RE: error while executing make command

2009-04-10 Thread Neerav Singh
Regards Hi All It looks like we need to install developers package for the compiler Sunstudio 12 Name of the package is SunWhea Does any one have an idea from where can I dowmload it?? Neerav Singh Tata Consultancy Services Ltd -Original Message- From:

Re: S/MIME pkcs#7 read from membuf problem

2009-04-10 Thread Anton D Kachalov
Ger Hobbelt wrote: What may have impact here is that a memory s/s BIO does not act like a file BIO by default. To get the same behaviour (at end-of-data == End of File), you should add the call BIO_set_mem_eof_return(pio, 0); after the line pio = BIO_new(BIO_s_mem()) to ensure

Re: error while executing make command

2009-04-10 Thread Kyle Hamilton
It should be on your Solaris install DVD. -Kyle H On Thu, Apr 9, 2009 at 11:00 PM, Neerav Singh neerav.si...@tatatel.co.in wrote: Regards Hi All It looks like we need to install developers package for the compiler Sunstudio 12 Name of the package is SunWhea Does any one have an idea

Re: Re: error while executing make command

2009-04-10 Thread hzdavid2009
hi, It is the first time to come here. I am a freshman. I am from China. I am glad to meet everyone. 2009-04-10 发件人: Kyle Hamilton 发送时间: 2009-04-10 17:30:07 收件人: openssl-users 抄送: 主题: Re: error while executing make command It should be on your Solaris install DVD. -Kyle H On

Digital signature via Openssl

2009-04-10 Thread vismara
Sponsor: Tutto in tempo reale sul tuo cellulare: news, messaggistica istantanea, email e molto altro ancora con m.email.Scopri di più Clicca qui: http://adv.email.it/cgi-bin/foclick.cgi?mid=8919d=20090410

Re: Digital signature via Openssl

2009-04-10 Thread Dr. Stephen Henson
On Fri, Apr 10, 2009, vism...@email.it wrote: Hello, I need help for a digital signature using openssl; I have to generate a p7m file, I used openssl mime with -inkey (user private key) and -signer (user cert) options, but when I verify the file (via Javasign) I see an error File not

Re: Digital signature via Openssl

2009-04-10 Thread vismara
Email.it: http://www.email.it/f Sponsor: Con Meetic trovi milioni di single, iscriviti adesso e inizia subito a fare nuove amicizie Clicca qui: http://adv.email.it/cgi-bin/foclick.cgi?mid=8290d=20090410 __ OpenSSL Project

Re: Memory leak while using OpenSSL library

2009-04-10 Thread Brad House
Commenting below. For better clarification, I have attached the trace of Valgrind on the Pastebin: http://pastebin.com/f1e222abd Here is the last lines 1. ==3290== LEAK SUMMARY: 2. ==3290==definitely lost: 268 bytes in 1 blocks. 3. ==3290==indirectly lost: 66,807

RE: Resource temporarily unavailable error with SSL_connect

2009-04-10 Thread David Schwartz
I'm attempting to establish an SSL connection, where everything seems OK until SSL_connect, which returns -1. error is set to 11, and perror() gives Resource temporarily unavailable. ERR_error_string rather useless output: error:0002:lib(0):func(0):system lib, even though both

Re: Resource temporarily unavailable error with SSL_connect

2009-04-10 Thread Dan Maartens
Hi David, This is on SuSE 10.3. The socket is non-blocking, for the only reason that I thought it would make debugging the problem easier. With the socket in blocking mode (which is all I need), I have the problem where SSL_connect never returns. I'm looking at errno becuase the information

RE: Help on building debug image in openssl!

2009-04-10 Thread Dave Thompson
From: owner-openssl-us...@openssl.org On Behalf Of Ger Hobbelt Sent: Thursday, 09 April, 2009 08:43 snip other points about configuring for debug And by the way, which made me scratch my head: malloc(0) is an illegal invocation of malloc anyhow and you should check for that (a LOT of

RE: help with bad decrypt error

2009-04-10 Thread Dave Thompson
From: owner-openssl-us...@openssl.org On Behalf Of Ger Hobbelt Sent: Wednesday, 08 April, 2009 19:06 On Tue, Apr 7, 2009 at 8:17 PM, Charles hobbe...@gmail.com wrote: Doh!  Thanks guys.  I try and use std::strings where possible to keep me out of trouble.  Stupid.  So I should be

RE: Resource temporarily unavailable error with SSL_connect

2009-04-10 Thread Dave Thompson
From: owner-openssl-us...@openssl.org On Behalf Of Dan Maartens Sent: Friday, 10 April, 2009 18:39 This is on SuSE 10.3. The socket is non-blocking, for the only reason that I thought it would make debugging the problem easier. With the socket in blocking mode (which is all I need),

RE: Resource temporarily unavailable error with SSL_connect

2009-04-10 Thread David Schwartz
This is on SuSE 10.3. The socket is non-blocking, for the only reason that I thought it would make debugging the problem easier. Debugging non-blocking sockets is much more complex than blocking ones. With the socket in blocking mode (which is all I need), I have the problem where