Re: openssl update 1.0.1f to 1.0.1g broke sendmail (SSL23_GET_SERVER_HELLO:tlsv1 alert decode error)

2014-04-11 Thread Alan Buxey
It seams that there is another difference between the two openssl versions then only the heartbleed bugfix. err, yes. The g release is a new minor release. I'd ALWAYS advise reading the changelog before deploying. .. You'd then have seen the new features (this is why vendors such as redhat

openssl-1.0.1g release for HP-UX 11.23

2014-04-11 Thread Klarenbeek, J.M. (Coos)
Gents, is there a chance that for this release of openssl (http://hpux.connect.org.uk/hppd/hpux/Languages/openssl-1.0.1g/), also version(s) for HP-UX 11.23 (HP-UX 11iv2 for Itanium and PA-RISC 2.0) is/are going to be released? We are currently reviewing our serverfarm and do very much need the

Re: Help me for ECDHE algorithm

2014-04-11 Thread chetan
I tried your sample code but compiler showing error like Undefined refrence to EVP_PKEY_CTX_new although i included header file openssl/evp.h. You have any idea why this errors occuring??? And by the way thanks for the help friend. -- View this message in context:

Re: Help me for ECDHE algorithm

2014-04-11 Thread Matt Caswell
On 11 April 2014 06:25, chetan chet...@neominds.in wrote: I tried your sample code but compiler showing error like Undefined refrence to EVP_PKEY_CTX_new although i included header file openssl/evp.h. You have any idea why this errors occuring??? And by the way thanks for the help friend.

Re: OpenSSL Security Advisory

2014-04-11 Thread Walter H.
On 10.04.2014 13:16, Rob Stradling wrote: On 09/04/14 20:43, Salz, Rich wrote: Can you please post a good and a bad server example. I have tested a lot of servers, including 'akamai.com', and they all show HEARTBEATING at the end: Look at Victor's recent post about how to patch

Re: OpenSSL Security Advisory

2014-04-11 Thread Steven Kneizys
The same issue when I tried to port over to windows, the ssl3_write_bytes is not exposed in the library. There doesn't seem to be an easy workaround that I can see. Steve... On Fri, Apr 11, 2014 at 7:40 AM, Walter H. walte...@mathemainzel.infowrote: On 10.04.2014 13:16, Rob Stradling wrote:

RE: OpenSSL Security Advisory

2014-04-11 Thread JAaron Anderson
Also try your range here https://ssltools.websecurity.symantec.com/checker/views/certCheck.jsp Hth jaa -Original Message- From: owner-openssl-us...@openssl.org [mailto:owner-openssl-us...@openssl.org] On Behalf Of Walter H. Sent: Friday, April 11, 2014 7:40 AM To:

Re: OpenSSL Security Advisory

2014-04-11 Thread Leonardo Secci
In debian I solved linking directly static library. gcc -ansi -pedantic -o heartbleed heartbleed.c -lcrypto \ /usr/lib/x86_64-linux-gnu/libssl.a Regards In data venerdì 11 aprile 2014 08:38:07, Steven Kneizys ha scritto: The same issue when I tried to port over to windows, the

Re: Error for EVP_PKEY_CTX_new()

2014-04-11 Thread chetan
I'm Using version 1.0.0e. Is my version of openssl is suitable for EVP_PKEY_CTX_new()?? and if not how can i upgrade my version to latest version? And by the way thanks for giving some time for me. Thanks again. -- View this message in context:

EVP_ symbols all undefined

2014-04-11 Thread Jerry Kaidor
Hello, I'm trying to install openssl 1.0.1g from source on my Linux slackware server. Said config shared, then make, then make install.Apache complains that EVP_idea_cbc is undefined. nm -g says U EVP_idea_cbc meaning it's undefined. I thought it was because of the IDEA patent thing. But

comment on donations

2014-04-11 Thread Steve Marquess
In a typical year the OpenSSL project receives about US$2000 in donations. This week we have received roughly 200 donations totaling nearly US$3000. Amounts have ranged between $0.02 and $300, and I notice that some individuals have made multiple contributions. For the larger donations and

Re: comment on donations

2014-04-11 Thread Ryan Hurst
Steve, Does the Foundation have a Bitcoin address? Ryan On Fri, Apr 11, 2014 at 8:09 AM, Steve Marquess marqu...@opensslfoundation.com wrote: In a typical year the OpenSSL project receives about US$2000 in donations. This week we have received roughly 200 donations totaling nearly

Re: comment on donations

2014-04-11 Thread Lou Picciano
Thanks, Steve, … for your hard work, and that of the other Team Members. This week's 'excitement' illustrates how important it us to all of us. (would be great to find a way around those 'hefty PayPal fees.) Lou Picciano - Original Message - From: Steve Marquess

Re: Error for EVP_PKEY_CTX_new()

2014-04-11 Thread Matt Caswell
On 11 April 2014 08:18, chetan chet...@neominds.in wrote: I'm Using version 1.0.0e. Is my version of openssl is suitable for EVP_PKEY_CTX_new()?? and if not how can i upgrade my version to latest version? That version should be fine. See my response to your other thread for next steps. Matt

Secure storage of private (RSA) keys

2014-04-11 Thread Salz, Rich
Akamai Technologies is pleased to offer the following patch to OpenSSL. It adds a secure arena that is used to store RSA private keys. This arena is mmap'd, with guard pages before and after so pointer over- and under-runs won't wander into it. It's also locked into memory so it doesn't appear

Re: comment on donations

2014-04-11 Thread Steve Marquess
On 04/11/2014 11:57 AM, Lou Picciano wrote: Thanks, Steve, … for your hard work, and that of the other Team Members. This week's 'excitement' illustrates how important it us to all of us. (would be great to find a way around those 'hefty PayPal fees.) I'm open to suggestions. Not only is

Re: Secure storage of private (RSA) keys

2014-04-11 Thread Hannes Frederic Sowa
Hello! On Fri, Apr 11, 2014 at 01:22:21PM -0400, Salz, Rich wrote: Akamai Technologies is pleased to offer the following patch to OpenSSL. It adds a secure arena that is used to store RSA private keys. This arena is mmap'd, with guard pages before and after so pointer over- and under-runs

RE: Secure storage of private (RSA) keys

2014-04-11 Thread Salz, Rich
Have you thought about mprotecting the guard pages with mprotect(PROT_NONE) so the application crashes in case of a stray memory access? Yes, rats. My message implied that we do that. And I then posted the wrong version of the code. :( Here's the right version of cmm_init. /r$

Re: comment on donations

2014-04-11 Thread Ted Byers
On Fri, Apr 11, 2014 at 1:23 PM, Steve Marquess marqu...@opensslfoundation.com wrote: On 04/11/2014 11:57 AM, Lou Picciano wrote: Thanks, Steve, ... for your hard work, and that of the other Team Members. This week's 'excitement' illustrates how important it us to all of us. (would be

Re: comment on donations

2014-04-11 Thread Ted Byers
On Fri, Apr 11, 2014 at 2:20 PM, Ted Byers r.ted.by...@gmail.com wrote: Have you checked out Google and Amazon's payment services? I have heard they exist, but haven't checked them out for cost (I may do so, and soon, as the Canadian bank's support for ecommerce leaves everything to be

Re: comment on donations

2014-04-11 Thread Justin Frappier
remove On Fri, Apr 11, 2014 at 2:20 PM, Ted Byers r.ted.by...@gmail.com wrote: On Fri, Apr 11, 2014 at 1:23 PM, Steve Marquess marqu...@opensslfoundation.com wrote: On 04/11/2014 11:57 AM, Lou Picciano wrote: Thanks, Steve, ... for your hard work, and that of the other Team Members.

Heart bleed with 0.9.8 and 1.0.1

2014-04-11 Thread cvishnuid
HiI am having 0.9.8 open ssl libraries in my server and 1.0.1 in my client.Am I venerable to heart bleed attach?Regards,Vishnu. -- View this message in context: http://openssl.6102.n7.nabble.com/Heart-bleed-with-0-9-8-and-1-0-1-tp49300.html Sent from the OpenSSL - User mailing list archive at

Re: OpenSSL Security Advisory

2014-04-11 Thread Rob Stradling
Thanks Leonardo! On 11/04/14 13:54, Leonardo Secci wrote: In debian I solved linking directly static library. gcc -ansi -pedantic -o heartbleed heartbleed.c -lcrypto \ /usr/lib/x86_64-linux-gnu/libssl.a Regards In data venerdì 11 aprile 2014 08:38:07, Steven Kneizys ha scritto: The

Re: comment on donations

2014-04-11 Thread Stacy Devino
It is well deserved. You must look at how much of the internet and our existing computing architecture relies on the good will of others. It is almost all of it. Progress cannot happen without openness and honesty, which you all have shown in spades. Everyone everywhere has come together to

Do I have to regenerate my own CA certificate because of Heartbleed???

2014-04-11 Thread Jeronimo L. Cabral
Dear, I have a CA implemented in a Debian Wheezy server and the versión of Openssl (1.0.1) is affected by the Hearthbleed vulnerability at time to generate our own CA certificate and the requested certificates for all the web servers from our company. I've just upgrade the openssl version, but

RE: Do I have to regenerate my own CA certificate because of Heartbleed???

2014-04-11 Thread Salz, Rich
Ø do I have to regenerate my CA certificate created with the former openssl version because of the Hearthbleed vulnerability ??? There should never be any reason for your web server to read the private key of the CA. So, no. -- Principal Security Engineer Akamai Technology Cambridge, MA

Re: comment on donations

2014-04-11 Thread Harlan Stenn
Honoring Reply-to ... Steve, please let me know what you learn. I'm going thru similar things with Network Time Foundation because of the recent DDoS issue involving NTP. Our donations bump after that issue was much smaller than yours, but at least we got a few more donations :) -- Harlan

Re: comment on donations

2014-04-11 Thread Jeffrey Walton
On Fri, Apr 11, 2014 at 2:20 PM, Ted Byers r.ted.by...@gmail.com wrote: On Fri, Apr 11, 2014 at 1:23 PM, Steve Marquess marqu...@opensslfoundation.com wrote: ... Have you checked out Google and Amazon's payment services? I have heard they exist, but haven't checked them out for cost (I may

Re: comment on donations

2014-04-11 Thread Ted Byers
Thanks Jeff, On Fri, Apr 11, 2014 at 4:54 PM, Jeffrey Walton noloa...@gmail.com wrote: On Fri, Apr 11, 2014 at 2:20 PM, Ted Byers r.ted.by...@gmail.com wrote: On Fri, Apr 11, 2014 at 1:23 PM, Steve Marquess marqu...@opensslfoundation.com wrote: ... Have you checked out Google and Amazon's

donation update

2014-04-11 Thread Steve Marquess
Donations are up to a total of about US$4200 for the week. I'd like to give special thanks to John(JT) Olds for a donation of US$1000 on behalf of: https://www.spacemonkey.com/blog/posts/heartbleeding-openssl-checklist May their server be hammered with traffic like ours was earlier this week.

Disable SSLv2

2014-04-11 Thread Alex Chen
I want to disable SSv2 support in OpenSSL and use the flag -DOPENSSL_NO_SSL2 when configuring OpenSSL. It builds fine and passes all tests during 'make test' phase. However there a quite a few of SSLv2 tests and they all seem to have passed, or at least do not indicate 'not supported' errors.

Re: comment on donations

2014-04-11 Thread Geoffrey Coram
On 04/11/2014 14:46, Ted Byers r.ted.by...@gmail.com wrote: And guess what I just found. ;-) Amazon has special discounts for icropayments and nonproft organizations. I do not know if you're a 501(c)3 non-profit, but if you are, then your rate would be 2.2%, along with the $0.30 per

Re: comment on donations

2014-04-11 Thread Ted Byers
On Fri, Apr 11, 2014 at 6:50 PM, Geoffrey Coram gjco...@gmail.com wrote: On 04/11/2014 14:46, Ted Byers r.ted.by...@gmail.com wrote: And guess what I just found. ;-) Amazon has special discounts for icropayments and nonproft organizations. I do not know if you're a 501(c)3 non-profit, but

Re: comment on donations

2014-04-11 Thread Steve Marquess
On 04/11/2014 06:50 PM, Geoffrey Coram wrote: On 04/11/2014 14:46, Ted Byers r.ted.by...@gmail.com wrote: And guess what I just found. ;-) Amazon has special discounts for icropayments and nonproft organizations. I do not know if you're a 501(c)3 non-profit, but if you are, then your rate

Re: OpenSSL Security Advisory

2014-04-11 Thread Tim Hudson
On 11/04/2014 10:38 PM, Steven Kneizys wrote: The same issue when I tried to port over to windows, the ssl3_write_bytes is not exposed in the library. There doesn't seem to be an easy workaround that I can see. The work around is trivial if you wanted to do that. Change to use the

Re: Do I have to regenerate my own CA certificate because of Heartbleed???

2014-04-11 Thread Kyle Hamilton
You do not have to regenerate the CA key or certificate. You do have to regenerate the web server keys and certificates. https://www.cloudflarechallenge.com/heartbleed has had multiple people independently obtain their private key. -Kyle H On Fri, Apr 11, 2014 at 12:59 PM, Jeronimo L. Cabral

Re: comment on donations

2014-04-11 Thread Kyle Hamilton
Teach me to ask a question without reading the entire thread. At what point would the break-even cost make sense to form a non-profit entity? -Kyle H On Fri, Apr 11, 2014 at 8:46 PM, Kyle Hamilton aerow...@gmail.com wrote: Is OpenSSL Software Foundation, Inc. a tax-exempt organization? -Kyle

Re: comment on donations

2014-04-11 Thread Kyle Hamilton
Is OpenSSL Software Foundation, Inc. a tax-exempt organization? -Kyle H On Fri, Apr 11, 2014 at 8:09 AM, Steve Marquess marqu...@opensslfoundation.com wrote: In a typical year the OpenSSL project receives about US$2000 in donations. This week we have received roughly 200 donations totaling