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
110 BIO *in=NULL,*inp;
272 BIO_printf(bio_err,"-r to output the digest in coreutils format\n");
275 BIO_printf(bio_err,"-binary output in binary form\n");
276 BIO_printf(bio_err,"-sign file sign digest using private key in file\n");
277 BIO_printf(bio_err,"-verify file verify a signature using public key in file\n");
278 BIO_printf(bio_err,"-prverify file verify a signature using private key in file\n");
294 in=BIO_new(BIO_s_file());
298 BIO_set_callback(in,BIO_debug_callback);
300 BIO_set_callback_arg(in,(char *)bio_err);
309 if ((in == NULL) || (bmd == NULL))
456 /* we use md as a filter, reading from 'in' */
489 inp=BIO_push(bmd,in);
500 BIO_set_fp(in,stdin,BIO_NOCLOSE);
523 if (BIO_read_filename(in,argv[i]) <= 0)
543 if (in != NULL) BIO_free(in);
571 BIO_printf(bio_err, "Read Error in %s\n",file);