diff options
author | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1995-06-11 19:33:05 +0000 |
---|---|---|
committer | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1995-06-11 19:33:05 +0000 |
commit | d3628763db3974826e46a036aa54333147fbe238 (patch) | |
tree | ba998dfb4fcad03e00a5cbf58e2a0ad648bab6e6 /lib/libskey/skeysubr.c | |
parent | 67eb1e0ed1fb11c703392e562440c67d3b44b094 (diff) | |
download | src-test2-d3628763db3974826e46a036aa54333147fbe238.tar.gz src-test2-d3628763db3974826e46a036aa54333147fbe238.zip |
Notes
Diffstat (limited to 'lib/libskey/skeysubr.c')
-rw-r--r-- | lib/libskey/skeysubr.c | 43 |
1 files changed, 6 insertions, 37 deletions
diff --git a/lib/libskey/skeysubr.c b/lib/libskey/skeysubr.c index 3911b324f67c..68564cfef9b1 100644 --- a/lib/libskey/skeysubr.c +++ b/lib/libskey/skeysubr.c @@ -1,20 +1,15 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> -#ifdef __MSDOS__ -#include <dos.h> -#endif -#ifdef unix #include <fcntl.h> #include <termios.h> #include <signal.h> -#endif #include "skey.h" #include "mdx.h" /* Crunch a key: - * concatenate the seed and the password, run through MD4 and + * concatenate the seed and the password, run through MDX and * collapse to 64 bits. This is defined as the user's starting key. */ int @@ -64,7 +59,6 @@ char *x; results[0] ^= results[2]; results[1] ^= results[3]; - /* Only works on byte-addressed little-endian machines!! */ memcpy(x,(char *)results,8); } @@ -73,36 +67,13 @@ void rip(buf) char *buf; { - char *cp; - - if((cp = strchr(buf,'\r')) != NULL) - *cp = '\0'; - - if((cp = strchr(buf,'\n')) != NULL) - *cp = '\0'; -} -/************************/ -#ifdef __MSDOS__ -char * -readpass(buf,n) -char *buf; -int n; -{ - int i; - char *cp; - - for(cp=buf,i = 0; i < n ; i++) - if ((*cp++ = bdos(7,0,0)) == '\r') - break; - *cp = '\0'; - printf("\n"); - rip(buf); - return buf; + buf[strcspn(buf, "\r\n")] = 0; } -#else + static struct termios saved_ttymode; -static void interrupt() +static void interrupt(sig) +int sig; { tcsetattr(0, TCSANOW, &saved_ttymode); exit(1); @@ -147,14 +118,12 @@ int n; return buf; } -#endif - sevenbit(s) char *s; { /* make sure there are only 7 bit code in the line*/ while(*s){ - *s = 0x7f & ( *s); + *s &= 0x7f; s++; } } |