ASF Bugzilla – Attachment 28487 Details for
Bug 52953
Unlike BASIC Authentication, DIGEST mode does not work if the hash is stored in uppercase.
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
patch against the current 8.0.0-dev trunk adding toLowerCase on hash retrieval
tomcat-digest-uppercase-hash-fix.diff (text/plain), 620 bytes, created by
Neale Rudd
on 2012-03-21 04:39:32 UTC
(
hide
)
Description:
patch against the current 8.0.0-dev trunk adding toLowerCase on hash retrieval
Filename:
MIME Type:
Creator:
Neale Rudd
Created:
2012-03-21 04:39:32 UTC
Size:
620 bytes
patch
obsolete
>Index: java/org/apache/catalina/realm/RealmBase.java >=================================================================== >--- java/org/apache/catalina/realm/RealmBase.java (revision 1303279) >+++ java/org/apache/catalina/realm/RealmBase.java (working copy) >@@ -381,7 +381,7 @@ > String qop, String realm, > String md5a2) { > >- String md5a1 = getDigest(username, realm); >+ String md5a1 = getDigest(username, realm).toLowerCase(); > if (md5a1 == null) > return null; > String serverDigestValue;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 52953
: 28487