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
120 BIO *in = NULL, *out = NULL, *indata = NULL, *rctin = NULL;
487 else if (!strcmp (*args, "-in"))
620 BIO_printf (bio_err, "-nointern don't search certificates in message for signer\n");
632 BIO_printf (bio_err, "-in file input file\n");
652 BIO_printf(bio_err, " load the file (or the files in the directory) into\n");
786 if (!(in = BIO_new_file(infile, inmode)))
794 in = BIO_new_fp(stdin, BIO_NOCLOSE);
799 cms = SMIME_read_CMS(in, &indata);
801 cms = PEM_read_bio_CMS(in, NULL, NULL, NULL);
803 cms = d2i_CMS_bio(in, NULL);
903 cms = CMS_data_create(in, flags);
907 cms = CMS_digest_create(in, sign_md, flags);
911 cms = CMS_compress(in, -1, flags);
916 cms = CMS_encrypt(encerts, in, cipher, flags);
943 if (!CMS_final(cms, in, NULL, flags))
949 cms = CMS_EncryptedData_encrypt(in, cipher,
984 cms = CMS_sign(NULL, NULL, other, in, flags);
1030 if (!CMS_final(cms, in, NULL, flags))
1168 ret = SMIME_write_CMS(out, cms, in, flags);
1171 ret = PEM_write_bio_CMS_stream(out, cms, in, flags);
1173 ret = i2d_CMS_bio_stream(out,cms, in, flags);
1221 BIO_free(in);