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
110 * -in arg - input file - default stdin
117 * -key file - make a request using key in file (or use it for verification).
124 * -asn1-kludge - output new certificate request in a format that some CA's
172 BIO *in=NULL,*out=NULL;
267 else if (strcmp(*argv,"-in") == 0)
409 BIO_printf(bio_err," -in arg input file\n");
422 BIO_printf(bio_err," -key file use the private key contained in file\n");
426 BIO_printf(bio_err," load the file (or the files in the directory) into\n");
428 BIO_printf(bio_err," -newkey rsa:bits generate a new RSA key of 'bits' in size\n");
429 BIO_printf(bio_err," -newkey dsa:file generate a new DSA key, parameters taken from CA in 'file'\n");
431 BIO_printf(bio_err," -newkey ec:file generate a new EC key, parameters taken from CA in 'file'\n");
442 BIO_printf(bio_err," -newhdr output \"NEW\" in the header lines\n");
443 BIO_printf(bio_err," -asn1-kludge Output the 'request' in a format that is wrong but some CA's\n");
445 BIO_printf(bio_err," -extensions .. specify certificate extension section (override value in config file)\n");
446 BIO_printf(bio_err," -reqexts .. specify request extension section (override value in config file)\n");
459 #ifndef MONOLITH /* else this has happened in openssl.c (global `config') */
610 in=BIO_new(BIO_s_file());
612 if ((in == NULL) || (out == NULL))
773 BIO_set_fp(in,stdin,BIO_NOCLOSE);
776 if (BIO_read_filename(in,infile) <= 0)
784 req=d2i_X509_REQ_bio(in,NULL);
786 req=PEM_read_bio_X509_REQ(in,NULL,NULL,NULL);
1090 BIO_free(in);
1131 BIO_printf(bio_err,"unable to find '%s' in config\n",
1180 * subject is expected to be in the format /type0=value0/type1=value1/type2=...
1301 BIO_printf(bio_err,"error, no objects specified in config file\n");
1427 BIO_printf(bio_err,"error, no objects specified in config file\n");