X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=pppd%2Fchap-new.h;h=48235d405af786852efb4d26fcc275c4cf572498;hp=0f38ff434ecf919eb1f714a742199097b4405143;hb=1c8af01fd1c14975b6ea9d757578ccbcafd97abb;hpb=a75742c5e72fa5718e57d77586887d58755feebe diff --git a/pppd/chap-new.h b/pppd/chap-new.h index 0f38ff4..48235d4 100644 --- a/pppd/chap-new.h +++ b/pppd/chap-new.h @@ -10,16 +10,11 @@ * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. The name(s) of the authors of this software must not be used to + * 2. The name(s) of the authors of this software must not be used to * endorse or promote products derived from this software without * prior written permission. * - * 4. Redistributions of any form whatsoever must retain the following + * 3. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by Paul Mackerras * ". @@ -63,19 +58,16 @@ #define MDTYPE_MICROSOFT_V2 0x1 #define MDTYPE_MICROSOFT 0x2 #define MDTYPE_MD5 0x4 +#define MDTYPE_NONE 0 -#ifdef CHAPMS -#define MDTYPE_ALL (MDTYPE_MICROSOFT_V2 | MDTYPE_MICROSOFT | MDTYPE_MD5) -#else -#define MDTYPE_ALL (MDTYPE_MD5) -#endif -#define MDTYPE_NONE 0 +/* hashes supported by this instance of pppd */ +extern int chap_mdtype_all; /* Return the digest alg. ID for the most preferred digest type. */ #define CHAP_DIGEST(mdtype) \ + ((mdtype) & MDTYPE_MD5)? CHAP_MD5: \ ((mdtype) & MDTYPE_MICROSOFT_V2)? CHAP_MICROSOFT_V2: \ ((mdtype) & MDTYPE_MICROSOFT)? CHAP_MICROSOFT: \ - ((mdtype) & MDTYPE_MD5)? CHAP_MD5: \ 0 /* Return the bit flag (lsb set) for our most preferred digest type. */