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
73 * -in arg - input file - default stdin
75 * -offset - where in the file to start
92 BIO *in=NULL,*out=NULL,*b64=NULL, *derout = NULL;
128 else if (strcmp(*argv,"-in") == 0)
200 BIO_printf(bio_err," -in arg input file\n");
204 BIO_printf(bio_err," -length arg length of section in file\n");
206 BIO_printf(bio_err," -dump dump unknown data in hex form\n");
207 BIO_printf(bio_err," -dlimit arg dump the first arg bytes of unknown data in hex form\n");
219 in=BIO_new(BIO_s_file());
221 if ((in == NULL) || (out == NULL))
236 if (BIO_read_filename(in,oidfile) <= 0)
242 OBJ_create_objects(in);
246 BIO_set_fp(in,stdin,BIO_NOCLOSE);
249 if (BIO_read_filename(in,infile) <= 0)
286 BIO_push(b64,in);
287 tmp=in;
288 in=b64;
296 i=BIO_read(in,&(buf->data[num]),BUFSIZ);
303 /* If any structs to parse go through in sequence */
374 if (in != NULL) BIO_free(in);
404 BIO_printf(bio, "Can't find 'asn1' in '%s'\n", genconf);