From tomcat-dev-return-59843-apmail-jakarta-tomcat-dev-archive=jakarta.apache.org@jakarta.apache.org Tue Jun 07 10:01:33 2005 Return-Path: Delivered-To: apmail-jakarta-tomcat-dev-archive@www.apache.org Received: (qmail 96696 invoked from network); 7 Jun 2005 10:01:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 7 Jun 2005 10:01:32 -0000 Received: (qmail 87976 invoked by uid 500); 7 Jun 2005 10:01:25 -0000 Delivered-To: apmail-jakarta-tomcat-dev-archive@jakarta.apache.org Received: (qmail 87952 invoked by uid 500); 7 Jun 2005 10:01:24 -0000 Mailing-List: contact tomcat-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Tomcat Developers List" Reply-To: "Tomcat Developers List" Delivered-To: mailing list tomcat-dev@jakarta.apache.org Received: (qmail 87932 invoked by uid 500); 7 Jun 2005 10:01:24 -0000 Received: (qmail 87910 invoked by uid 99); 7 Jun 2005 10:01:22 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Tue, 07 Jun 2005 03:01:19 -0700 Received: (qmail 96402 invoked by uid 1526); 7 Jun 2005 10:00:55 -0000 Date: 7 Jun 2005 10:00:55 -0000 Message-ID: <20050607100055.96401.qmail@minotaur.apache.org> From: mturk@apache.org To: jakarta-tomcat-connectors-cvs@apache.org Subject: cvs commit: jakarta-tomcat-connectors/jni/native/src sslutils.c X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N mturk 2005/06/07 03:00:55 Modified: jni/native/src sslutils.c Log: Use EVP instead des for password prompting. Revision Changes Path 1.19 +2 -2 jakarta-tomcat-connectors/jni/native/src/sslutils.c Index: sslutils.c =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/jni/native/src/sslutils.c,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- sslutils.c 7 Jun 2005 09:13:22 -0000 1.18 +++ sslutils.c 7 Jun 2005 10:00:55 -0000 1.19 @@ -95,7 +95,7 @@ if (si.wShowWindow == 0) return 0; #endif - des_read_pw_string(data->password, SSL_MAX_PASSWORD_LEN, + EVP_read_pw_string(data->password, SSL_MAX_PASSWORD_LEN, data->prompt, 0); rv = strlen(data->password); } --------------------------------------------------------------------- To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org