Lines Matching defs:in
11 * apply to all code found in this distribution, be it the RC4, RSA,
16 * Copyright remains Eric Young's, and as such any Copyright notices in
18 * If this package is used in a product, Eric Young should be given attribution
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
98 int uuencode(unsigned char *in,int num,unsigned char *out);
99 int uudecode(unsigned char *in,int num,unsigned char *out);
133 char *in=NULL,*out=NULL;
227 if (in == NULL)
228 in=argv[i];
263 if ( (in != NULL) &&
266 (stat(in,&ins) != -1) &&
271 (strcmp(in,out) == 0))
285 if (in == NULL)
287 else if ((DES_IN=fopen(in,"r")) == NULL)
337 " in conjunction with -[eEdD].",
343 " (uuname is the filename to put in the uuencode header).",
344 "-b : encrypt using DES in ecb encryption mode, the default is cbc mode.",
770 fprintf(stderr,"no 'begin' found in uuencoded input\n");
827 int uuencode(unsigned char *in, int num, unsigned char *out)
842 ccc2l(in,l);
857 int uudecode(unsigned char *in, int num, unsigned char *out)
867 n= *(in++)-' ';
871 in--;
891 w= *(in++)-' ';
892 x= *(in++)-' ';
893 y= *(in++)-' ';
894 z= *(in++)-' ';
905 case 1: w=0; in--;
906 case 2: x=0; in--;
907 case 3: y=0; in--;
908 case 4: z=0; in--;
921 if (*(in++) != '\n')
923 fprintf(stderr,"missing nl in uuencoded line\n");