]> git.ozlabs.org Git - ppp.git/blobdiff - pppd/plugins/radius/radiusclient/patches/merit-2.4.21-CHAP.diff
Simplified and cleaned up the radiusclient implementation, and
[ppp.git] / pppd / plugins / radius / radiusclient / patches / merit-2.4.21-CHAP.diff
diff --git a/pppd/plugins/radius/radiusclient/patches/merit-2.4.21-CHAP.diff b/pppd/plugins/radius/radiusclient/patches/merit-2.4.21-CHAP.diff
deleted file mode 100644 (file)
index f6562a3..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
---- funcs.c.dist       Mon May 13 00:37:37 1996
-+++ funcs.c    Mon May 13 00:58:33 1996
-@@ -830,11 +830,12 @@
-                               /* reply.*/
- {
--      VALUE_PAIR     *item;
-+      VALUE_PAIR     *item, *chall;
-       u_char          buffer[AUTH_PASS_LEN + AUTH_VECTOR_LEN + 1];
-       int             i;
-       int             secretlen;
-       int             result;
-+      int             chall_len;
-       u_char          digest[CHAP_VALUE_LENGTH];
-       u_char         *ptr;
-       char           *crypt ();
-@@ -896,10 +897,21 @@
-               secretlen = strlen ((char *) ptr);
-               ptr += secretlen;
--              memcpy ((char *) ptr, (char *) authreq->vector,
--                      AUTH_VECTOR_LEN);
-+
-+              /* this uses CHAP-Challenge as the challenge if it exists */
-+              /* lf, 5/13/96 */
-+              if ((chall = get_vp (authreq->request, PW_CHAP_CHALLENGE))
-+                      != (VALUE_PAIR *) NULL) {
-+                      memcpy ((char *) ptr, chall->strvalue, chall->lvalue);  
-+                      chall_len = chall->lvalue;
-+              } else {
-+                      memcpy ((char *) ptr, (char *) authreq->vector,
-+                              AUTH_VECTOR_LEN);
-+                      chall_len = AUTH_VECTOR_LEN;
-+              }       
-+              
-               md5_calc (digest, buffer,
--                        1 + CHAP_VALUE_LENGTH + secretlen);
-+                        1 + chall_len + secretlen);
-               /* Compare them */
-               if ((result = memcmp ((char *) digest, item->strvalue + 1,
-                                     CHAP_VALUE_LENGTH)) != 0)