=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/Attic/radix.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- src/usr.bin/ssh/Attic/radix.c 2000/03/16 20:56:14 1.7 +++ src/usr.bin/ssh/Attic/radix.c 2000/04/14 10:30:32 1.8 @@ -1,10 +1,10 @@ /* * radix.c - * + * * base-64 encoding pinched from lynx2-7-2, who pinched it from rpem. * Originally written by Mark Riordan 12 August 1990 and 17 Feb 1991 * and placed in the public domain. - * + * * Dug Song */ @@ -23,7 +23,7 @@ unsigned char pr2six[256]; -int +int uuencode(unsigned char *bufin, unsigned int nbytes, char *bufcoded) { /* ENC is the basic 1 character encoding function to make a char printing */ @@ -49,7 +49,7 @@ return (outptr - bufcoded); } -int +int uudecode(const char *bufcoded, unsigned char *bufplain, int outbufsize) { /* single character decode */ @@ -162,7 +162,7 @@ } -int +int creds_to_radix(CREDENTIALS *creds, unsigned char *buf) { char *p, *s; @@ -216,7 +216,7 @@ return (uuencode((unsigned char *)temp, len, (char *)buf)); } -int +int radix_to_creds(const char *buf, CREDENTIALS *creds) {