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 F1D439B52 for ; Fri, 27 Jan 2012 22:51:33 +0000 (UTC) Received: (qmail 68562 invoked by uid 500); 27 Jan 2012 22:51:33 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 68402 invoked by uid 500); 27 Jan 2012 22:51:32 -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 68393 invoked by uid 99); 27 Jan 2012 22:51:32 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Jan 2012 22:51:32 +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; Fri, 27 Jan 2012 22:51:30 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 3996223889B8 for ; Fri, 27 Jan 2012 22:51:09 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1236914 - /tomcat/trunk/webapps/docs/realm-howto.xml Date: Fri, 27 Jan 2012 22:51:09 -0000 To: dev@tomcat.apache.org From: markt@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120127225109.3996223889B8@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: markt Date: Fri Jan 27 22:51:08 2012 New Revision: 1236914 URL: http://svn.apache.org/viewvc?rev=1236914&view=rev Log: Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=52515 Note that DIGEST auth requires MD5 digests Modified: tomcat/trunk/webapps/docs/realm-howto.xml Modified: tomcat/trunk/webapps/docs/realm-howto.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/realm-howto.xml?rev=1236914&r1=1236913&r2=1236914&view=diff ============================================================================== --- tomcat/trunk/webapps/docs/realm-howto.xml (original) +++ tomcat/trunk/webapps/docs/realm-howto.xml Fri Jan 27 22:51:08 2012 @@ -203,10 +203,10 @@ techniques are supported:

If using digested passwords with DIGEST authentication, the cleartext used - to generate the digest is different. In the examples above - {cleartext-password} must be replaced with - {username}:{realm}:{cleartext-password}. For example, in a - development environment this might take the form + to generate the digest is different and the digest must use the MD5 + algorithm. In the examples above {cleartext-password} must be + replaced with {username}:{realm}:{cleartext-password}. For + example, in a development environment this might take the form testUser:Authentication required:testPassword. The value for {realm} is taken from the <realm-name> element of the web application's <login-config>. If --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org