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
104 BIO *in = NULL, *out = NULL, *indata = NULL;
338 else if (!strcmp (*args, "-in"))
459 BIO_printf (bio_err, "-nointern don't search certificates in message for signer\n");
469 BIO_printf (bio_err, "-in file input file\n");
489 BIO_printf(bio_err, " load the file (or the files in the directory) into\n");
610 if (!(in = BIO_new_file(infile, inmode)))
618 in = BIO_new_fp(stdin, BIO_NOCLOSE);
623 p7 = SMIME_read_PKCS7(in, &indata);
625 p7 = PEM_read_bio_PKCS7(in, NULL, NULL, NULL);
627 p7 = d2i_PKCS7_bio(in, NULL);
686 p7 = PKCS7_encrypt(encerts, in, cipher, flags);
704 p7 = PKCS7_sign(NULL, NULL, other, in, flags);
733 if (!PKCS7_final(p7, in, flags))
788 SMIME_write_PKCS7(out, p7, in, flags);
791 PEM_write_bio_PKCS7_stream(out, p7, in, flags);
793 i2d_PKCS7_bio_stream(out,p7, in, flags);
819 BIO_free(in);