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
75 int set_hex(char *in,unsigned char *out,int size);
127 BIO *in=NULL,*out=NULL,*b64=NULL,*benc=NULL,*rbio=NULL,*wbio=NULL;
172 else if (strcmp(*argv,"-in") == 0)
301 BIO_printf(bio_err,"%-14s input file\n","-in <file>");
311 BIO_printf(bio_err,"%-14s salt in hex is the next argument\n","-S");
312 BIO_printf(bio_err,"%-14s key/iv in hex is the next argument\n","-K/-iv");
344 BIO_printf(bio_err, "Ciphers in XTS mode are not supported by the enc utility\n");
396 in=BIO_new(BIO_s_file());
398 if ((in == NULL) || (out == NULL))
405 BIO_set_callback(in,BIO_debug_callback);
407 BIO_set_callback_arg(in,(char *)bio_err);
417 BIO_set_fp(in,stdin,BIO_NOCLOSE);
421 if (BIO_read_filename(in,inf) <= 0)
489 rbio=in;
525 * line, so we get no salt in that case. Is this a bug?
693 BIO_printf(bio_err,"bytes read :%8ld\n",BIO_number_read(in));
700 if (in != NULL) BIO_free(in);
712 int set_hex(char *in, unsigned char *out, int size)
717 n=strlen(in);
726 j=(unsigned char)*in;
727 *(in++)='\0';