aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1996-10-17 15:22:46 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1996-10-17 15:22:46 +0000
commit811a3c8d543bc8813f6515640317e5bb37bf26de (patch)
tree6e2878a0204ed25fc052fdc6a86f02cf8fe98bfa /lib
parent590b04e0057fe4615a80a60917911727bd24830f (diff)
downloadsrc-811a3c8d543bc8813f6515640317e5bb37bf26de.tar.gz
src-811a3c8d543bc8813f6515640317e5bb37bf26de.zip
Notes
Diffstat (limited to 'lib')
-rw-r--r--lib/libskey/Makefile2
-rw-r--r--lib/libskey/put.c2
-rw-r--r--lib/libskey/skey.h23
-rw-r--r--lib/libskey/skeylogin.c4
4 files changed, 23 insertions, 8 deletions
diff --git a/lib/libskey/Makefile b/lib/libskey/Makefile
index ebbac7aaed6d..b91ab0b7a763 100644
--- a/lib/libskey/Makefile
+++ b/lib/libskey/Makefile
@@ -5,7 +5,7 @@ SRCS= skeyaccess.c put.c skey_crypt.c skey_getpass.c skeylogin.c skeysubr.c
MAN1= skey.1
MAN5= skey.access.5
-CFLAGS+=-DPERMIT_CONSOLE -I${.CURDIR}
+CFLAGS+=-DPERMIT_CONSOLE -D_SKEY_INTERNAL -I${.CURDIR}
beforeinstall:
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/skey.h \
diff --git a/lib/libskey/put.c b/lib/libskey/put.c
index cc7429ac269f..5c9eaea78975 100644
--- a/lib/libskey/put.c
+++ b/lib/libskey/put.c
@@ -10,7 +10,7 @@ static void insert __P((char *s, int x, int start, int length));
static int wsrch __P((char *w,int low,int high));
/* Dictionary for integer-word translations */
-char Wp[2048][4] = {
+static char Wp[2048][4] = {
"A",
"ABE",
"ACE",
diff --git a/lib/libskey/skey.h b/lib/libskey/skey.h
index 6cf9d95c5f0e..208d14d58b59 100644
--- a/lib/libskey/skey.h
+++ b/lib/libskey/skey.h
@@ -14,6 +14,7 @@ struct skey {
long recstart; /*needed so reread of buffer is efficient*/
};
+#ifdef _SKEY_INTERNAL
/* Client-side structure for scanning data stream for challenge */
struct mc {
char buf[256];
@@ -21,6 +22,18 @@ struct mc {
int cnt;
};
+#define atob8 _sk_atob8
+#define btoa8 _sk_btoa8
+#define btoe _sk_btoe
+#define etob _sk_etob
+#define f _sk_f
+#define htoi _sk_htoi
+#define keycrunch _sk_keycrunch
+#define put8 _sk_put8
+#define readpass _sk_readpass
+#define rip _sk_rip
+#define sevenbit _sk_sevenbit
+
void f __P((char *x));
int keycrunch __P((char *result,char *seed,char *passwd));
char *btoe __P((char *engout,char *c));
@@ -30,14 +43,16 @@ int btoa8 __P((char *out, char *in));
int htoi __P((char c));
int etob __P((char *out,char *e));
void sevenbit __P((char *s));
+char *readpass __P((char *buf, int n));
void rip __P((char *buf));
-int skeychallenge __P((struct skey *mp,char *name, char *challenge));
-int skeyinfo __P((struct skey *mp, char* name, char *ss));
-int skeylookup __P((struct skey *mp,char *name));
-int skeyverify __P((struct skey *mp,char *response));
+#endif /* _SKEY_INTERNAL */
/* Simplified application programming interface. */
#include <pwd.h>
+int skeylookup __P((struct skey *mp,char *name));
+int skeyverify __P((struct skey *mp,char *response));
+int skeychallenge __P((struct skey *mp,char *name, char *challenge));
+int skeyinfo __P((struct skey *mp, char* name, char *ss));
int skeyaccess __P((char *user, char *port, char *host, char *addr));
char *skey_getpass __P((char *prompt, struct passwd *pwd, int pwok));
char *skey_crypt __P((char *pp, char *salt, struct passwd *pwd, int pwok));
diff --git a/lib/libskey/skeylogin.c b/lib/libskey/skeylogin.c
index d4de744d9ecd..a90fac1a1cda 100644
--- a/lib/libskey/skeylogin.c
+++ b/lib/libskey/skeylogin.c
@@ -22,8 +22,7 @@
#include "skey.h"
#include "pathnames.h"
-char *skipspace();
-int skeylookup __P((struct skey *mp,char *name));
+static char *skipspace();
#define setpriority(x,y,z) /* nothing */
@@ -296,6 +295,7 @@ register char *out,*in;
return 0;
}
+static
char *
skipspace(cp)
register char *cp;