Return-Path: X-Original-To: apmail-tomcat-dev-archive@www.apache.org Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id EA55F6869 for ; Thu, 21 Jul 2011 07:29:56 +0000 (UTC) Received: (qmail 96302 invoked by uid 500); 21 Jul 2011 07:29:53 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 95720 invoked by uid 500); 21 Jul 2011 07:29:38 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 95692 invoked by uid 99); 21 Jul 2011 07:29:31 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Jul 2011 07:29:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Jul 2011 07:29:30 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 4514423888FE for ; Thu, 21 Jul 2011 07:29:10 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1149052 - /tomcat/native/branches/1.1.x/native/src/ssl.c Date: Thu, 21 Jul 2011 07:29:09 -0000 To: dev@tomcat.apache.org From: jfclere@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110721072910.4514423888FE@eris.apache.org> Author: jfclere Date: Thu Jul 21 07:29:08 2011 New Revision: 1149052 URL: http://svn.apache.org/viewvc?rev=1149052&view=rev Log: Fix for the weird: (on macosx). +++ java.lang.Exception: Unable to load certificate key newkey.pem (error:0906B072:PEM routines:PEM_get_EVP_CIPHER_INFO:unsupported encryption) at org.apache.tomcat.jni.SSLContext.setCertificate(Native Method) +++ Modified: tomcat/native/branches/1.1.x/native/src/ssl.c Modified: tomcat/native/branches/1.1.x/native/src/ssl.c URL: http://svn.apache.org/viewvc/tomcat/native/branches/1.1.x/native/src/ssl.c?rev=1149052&r1=1149051&r2=1149052&view=diff ============================================================================== --- tomcat/native/branches/1.1.x/native/src/ssl.c (original) +++ tomcat/native/branches/1.1.x/native/src/ssl.c Thu Jul 21 07:29:08 2011 @@ -500,6 +500,7 @@ TCN_IMPLEMENT_CALL(jint, SSL, initialize ERR_load_crypto_strings(); SSL_load_error_strings(); SSL_library_init(); + OpenSSL_add_all_ciphers() ; #if HAVE_ENGINE_LOAD_BUILTIN_ENGINES ENGINE_load_builtin_engines(); #endif --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org