Home | History | Annotate | Download | only in apps

Lines Matching defs:in

8  * Redistribution and use in source and binary forms, with or without
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
31 * nor may "OpenSSL" appear in their names without prior written
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
90 int cert_load(BIO *in, STACK_OF(X509) *sk);
100 BIO *in=NULL, *out = NULL;
235 } else if (!strcmp (*args, "-in")) {
290 BIO_printf (bio_err, "-certfile f add all certs in f\n");
295 BIO_printf (bio_err, "-in infile input filename\n");
329 BIO_printf (bio_err, "-macalg alg digest algorithm used in MAC (default SHA1)\n");
339 BIO_printf(bio_err, " load the file (or the files in the directory) into\n");
385 if (!infile) in = BIO_new_fp(stdin, BIO_NOCLOSE);
386 else in = BIO_new_file(infile, "rb");
387 if (!in) {
462 /* Load in all certs in input file */
639 if (!(p12 = d2i_PKCS12_bio (in, NULL))) {
695 BIO_free(in);
848 * set an appropriate error value in the context */
878 int cert_load(BIO *in, STACK_OF(X509) *sk)
886 while((cert = PEM_read_bio_X509(in, NULL, NULL, NULL))) {