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
75 BIO *in = NULL, *out = NULL;
185 else if (!strcmp (*args, "-in"))
212 BIO_printf(bio_err, "-in file input file\n");
247 if (!(in = BIO_new_file(infile, "rb")))
255 in = BIO_new_fp (stdin, BIO_NOCLOSE);
338 p8inf = PEM_read_bio_PKCS8_PRIV_KEY_INFO(in,NULL,NULL, NULL);
340 p8inf = d2i_PKCS8_PRIV_KEY_INFO_bio(in, NULL);
350 p8 = PEM_read_bio_PKCS8(in, NULL, NULL, NULL);
352 p8 = d2i_PKCS8_bio(in, NULL);
395 BIO_printf(bio_err, "No Octet String in PrivateKey\n");
399 BIO_printf(bio_err, "DSA parameters included in PrivateKey\n");
403 BIO_printf(bio_err, "DSA public key include in PrivateKey\n");
432 BIO_free(in);