September 6th Security Advisory

2011-09-07 Thread james
I noticed that the advisory mentions OpenSSL 0.9.8s, however, I haven't seen an announcement or tarball posted for this version, yet. Can we expect this version to be released or was the mention of OpenSSL 0.9.8s a mere typo?"This issue applies to OpenSSL 0.9.8 through 0.9.8s (experimental

RE: REMOVE my address from your mailing list, please

2011-09-07 Thread Scott Neugroschl
unsubscribe here: http://www.openssl.org/support/community.html From: owner-openssl-us...@openssl.org on behalf of Anh Pham Sent: Wed 9/7/2011 3:23 AM To: openssl-users@openssl.org Subject: REMOVE my address from your mailing list, please Remove my address

How to deal with new OIDs

2011-09-07 Thread Dominik Oepen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi all, in a project I maintain I have to deal with OIDs not contained within OpenSSL. In particular, I use OpenSSL to parse ASN1 encoded data containing OIDs (using the Macros from asn1t.h) and do switch-case statements on the resulting NIDs. Until

Unsupported prf error when reading an RSA private key

2011-09-07 Thread Shawn Willden
(Note: CC'd to the Keyczar mailing list. Apologies to anyone who's on both lists.) I'm getting errors that I don't really understand from PEM_read_vio_PrivateKey on Mac OS X 10.6 (the error does not occur on Linux, so it's version/platform-related). The error is occurring in a unit test in the

Re: Unsupported prf error when reading an RSA private key

2011-09-07 Thread Dr. Stephen Henson
On Wed, Sep 07, 2011, Shawn Willden wrote: (Note: CC'd to the Keyczar mailing list. Apologies to anyone who's on both lists.) I'm getting errors that I don't really understand from PEM_read_vio_PrivateKey on Mac OS X 10.6 (the error does not occur on Linux, so it's

Re: How to deal with new OIDs

2011-09-07 Thread Dr. Stephen Henson
On Wed, Sep 07, 2011, Dominik Oepen wrote: Hi all, in a project I maintain I have to deal with OIDs not contained within OpenSSL. In particular, I use OpenSSL to parse ASN1 encoded data containing OIDs (using the Macros from asn1t.h) and do switch-case statements on the resulting NIDs.

Re: Unsupported prf error when reading an RSA private key

2011-09-07 Thread Shawn Willden
On Wed, Sep 7, 2011 at 12:15 PM, Dr. Stephen Henson st...@openssl.orgwrote: Have you included OpenSSL_add_all_algorithms()? Yes. Here's a more complete snippet: // Ciphers table requires to be loaded. OpenSSL_add_all_ciphers(); ScopedEVPPKey evp_pkey; // The first NULL value means

Re: Unsupported prf error when reading an RSA private key

2011-09-07 Thread Dr. Stephen Henson
On Wed, Sep 07, 2011, Shawn Willden wrote: On Wed, Sep 7, 2011 at 12:15 PM, Dr. Stephen Henson st...@openssl.orgwrote: Have you included OpenSSL_add_all_algorithms()? Yes. Here's a more complete snippet: // Ciphers table requires to be loaded. OpenSSL_add_all_ciphers();