From a670645c57e67382a9361923272e095486be2a79 Mon Sep 17 00:00:00 2001 From: Guido van Rooij Date: Sun, 21 Aug 1994 19:10:43 +0000 Subject: Add skey support Reviewed by: Submitted by: guido --- libexec/rexecd/Makefile | 5 +++-- libexec/rexecd/rexecd.c | 10 ++++++++++ 2 files changed, 13 insertions(+), 2 deletions(-) (limited to 'libexec/rexecd') diff --git a/libexec/rexecd/Makefile b/libexec/rexecd/Makefile index 0b225ba706e3..c9814f4ebd3a 100644 --- a/libexec/rexecd/Makefile +++ b/libexec/rexecd/Makefile @@ -2,8 +2,9 @@ PROG= rexecd MAN8= rexecd.8 -LDADD= -lcrypt -DPADD= ${LIBCRYPT} +CFLAGS+= -DSKEY +DPADD= ${LIBCRYPT} ${LIBSKEY} +LDADD= -lcrypt -lskey .include diff --git a/libexec/rexecd/rexecd.c b/libexec/rexecd/rexecd.c index 796ad9cea936..7779934d357f 100644 --- a/libexec/rexecd/rexecd.c +++ b/libexec/rexecd/rexecd.c @@ -100,7 +100,13 @@ doit(f, fromp) struct sockaddr_in *fromp; { char cmdbuf[NCARGS+1], *cp, *namep; +#ifdef SKEY + char *skey_crypt(); + int permit_passwd = authfile(inet_ntoa(fromp->sin_addr)); + char user[16], pass[100]; +#else /* SKEY */ char user[16], pass[16]; +#endif /* SKEY */ struct passwd *pwd; int s; u_short port; @@ -156,7 +162,11 @@ doit(f, fromp) } endpwent(); if (*pwd->pw_passwd != '\0') { +#ifdef SKEY + namep = skey_crypt(pass, pwd->pw_passwd, pwd, permit_passwd); +#else /* SKEY */ namep = crypt(pass, pwd->pw_passwd); +#endif /* SKEY */ if (strcmp(namep, pwd->pw_passwd)) { error("Password incorrect.\n"); exit(1); -- cgit v1.2.3