Home | History | Annotate | Download | only in apps

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
97 " -in arg - input file - default stdin\n",
131 " -checkend arg - check whether the cert expires in the next arg seconds\n",
138 " missing, it is assumed to be in the CA file.\n",
142 " -text - print the certificate in text form\n",
310 else if (strcmp(*argv,"-in") == 0)
570 BIO *in;
577 in=BIO_new(BIO_s_file());
578 if (in == NULL)
585 BIO_set_fp(in,stdin,BIO_NOCLOSE|BIO_FP_TEXT);
588 if (BIO_read_filename(in,infile) <= 0)
591 BIO_free(in);
595 req=PEM_read_bio_X509_REQ(in,NULL,NULL,NULL);
596 BIO_free(in);
954 /* should be in the library */
1175 * a certificate request in which case it is not. */