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
61 * Redistribution and use in source and binary forms, with or without
68 * 2. Redistributions in binary form must reproduce the above copyright
69 * notice, this list of conditions and the following disclaimer in
76 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
84 * nor may "OpenSSL" appear in their names without prior written
90 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
95 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
100 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
102 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
137 * -in arg - input file - default stdin
157 BIO *in=NULL,*out=NULL;
195 else if (strcmp(*argv,"-in") == 0)
246 BIO_printf(bio_err," -in arg input file\n");
256 BIO_printf(bio_err," numbits number of bits in to generate (default 512)\n");
261 BIO_printf(bio_err," - load the file (or the files in the directory) into\n");
343 in=BIO_new(BIO_s_file());
344 if (in == NULL)
350 BIO_set_fp(in,stdin,BIO_NOCLOSE);
353 if (BIO_read_filename(in,infile) <= 0)
372 dsa=d2i_DSAparams_bio(in,NULL);
374 dsa=PEM_read_bio_DSAparams(in,NULL,NULL,NULL);
395 dh=d2i_DHparams_bio(in,NULL);
397 dh=PEM_read_bio_DHparams(in,NULL,NULL,NULL);
529 if (in != NULL) BIO_free(in);
536 /* dh_cb is identical to dsa_cb in apps/dsaparam.c */