gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r14055 - in libmicrohttpd: . src/daemon


From: gnunet
Subject: [GNUnet-SVN] r14055 - in libmicrohttpd: . src/daemon
Date: Thu, 23 Dec 2010 15:41:23 +0100

Author: grothoff
Date: 2010-12-23 15:41:23 +0100 (Thu, 23 Dec 2010)
New Revision: 14055

Modified:
   libmicrohttpd/ChangeLog
   libmicrohttpd/src/daemon/internal.h
Log:
fix 1633

Modified: libmicrohttpd/ChangeLog
===================================================================
--- libmicrohttpd/ChangeLog     2010-12-23 14:35:03 UTC (rev 14054)
+++ libmicrohttpd/ChangeLog     2010-12-23 14:41:23 UTC (rev 14055)
@@ -1,3 +1,7 @@
+Thu Dec 23 15:40:36 CET 2010
+       Increasing nonce length to 128 to support digest authentication
+       with Opera (see #1633).
+
 Mon Dec 20 21:22:57 CET 2010
        Added macro MHD_LONG_LONG to allow change of MHD's "long long" use
        to some other type on platforms that do not support "long long"

Modified: libmicrohttpd/src/daemon/internal.h
===================================================================
--- libmicrohttpd/src/daemon/internal.h 2010-12-23 14:35:03 UTC (rev 14054)
+++ libmicrohttpd/src/daemon/internal.h 2010-12-23 14:41:23 UTC (rev 14055)
@@ -96,10 +96,12 @@
 
 
 /**
- * Maximum length of a nonce in digest authentication.
- * 32(MD5 Hex) + 8(Timestamp Hex) + 1(NULL)
+ * Maximum length of a nonce in digest authentication.  32(MD5 Hex) +
+ * 8(Timestamp Hex) + 1(NULL); hence 41 should suffice, but Opera
+ * (already) takes more (see Mantis #1633), so we've increased the
+ * value to support something longer...
  */
-#define MAX_NONCE_LENGTH 41
+#define MAX_NONCE_LENGTH 129
 
 
 /**




reply via email to

[Prev in Thread] Current Thread [Next in Thread]