diff options
author | brian <brian@FreeBSD.org> | 2000-11-05 03:25:09 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 2000-11-05 03:25:09 +0000 |
commit | 229a59bc61fb77ffa0216a1c84d309b633f2f0dc (patch) | |
tree | eed251ae8cd4be29c8530607159698ca97fb7dd3 /usr.sbin/ppp | |
parent | 97fb9983b4670b7ad0a90b57d836ae8bb7758285 (diff) | |
download | FreeBSD-src-229a59bc61fb77ffa0216a1c84d309b633f2f0dc.zip FreeBSD-src-229a59bc61fb77ffa0216a1c84d309b633f2f0dc.tar.gz |
Merge some OpenBSD/NetBSD fixes to the recent MPPE/CHAP0x81 update.
Diffstat (limited to 'usr.sbin/ppp')
-rw-r--r-- | usr.sbin/ppp/chap_ms.c | 27 | ||||
-rw-r--r-- | usr.sbin/ppp/mppe.c | 4 |
2 files changed, 30 insertions, 1 deletions
diff --git a/usr.sbin/ppp/chap_ms.c b/usr.sbin/ppp/chap_ms.c index a3df295..e482296 100644 --- a/usr.sbin/ppp/chap_ms.c +++ b/usr.sbin/ppp/chap_ms.c @@ -28,10 +28,12 @@ #include <ctype.h> #ifdef __FreeBSD__ #include <openssl/des.h> +#include <sha.h> #else +#include <stdlib.h> #include <des.h> +#include <openssl/sha.h> #endif -#include <sha.h> #include <md4.h> #include <string.h> @@ -177,6 +179,29 @@ GenerateNTResponse(char *AuthenticatorChallenge, char *PeerChallenge, ChallengeResponse(Challenge, PasswordHash, Response); } +#ifndef __FreeBSD__ +#define LENGTH 20 +char * +SHA1_End(SHA_CTX *ctx, char *buf) +{ + int i; + unsigned char digest[LENGTH]; + static const char hex[]="0123456789abcdef"; + + if (!buf) + buf = malloc(2*LENGTH + 1); + if (!buf) + return 0; + SHA1_Final(digest, ctx); + for (i = 0; i < LENGTH; i++) { + buf[i+i] = hex[digest[i] >> 4]; + buf[i+i+1] = hex[digest[i] & 0x0f]; + } + buf[i+i] = '\0'; + return buf; +} +#endif + void GenerateAuthenticatorResponse(char *Password, int PasswordLen, char *NTResponse, char *PeerChallenge, diff --git a/usr.sbin/ppp/mppe.c b/usr.sbin/ppp/mppe.c index 85576fe..253bb56 100644 --- a/usr.sbin/ppp/mppe.c +++ b/usr.sbin/ppp/mppe.c @@ -31,7 +31,11 @@ #include <stdio.h> #include <stdlib.h> #include <termios.h> +#ifdef __FreeBSD__ #include <sha.h> +#else +#include <openssl/sha.h> +#endif #include <openssl/rc4.h> #include "defs.h" |