Lines Matching defs:out
96 {"out", OPT_OUT, '>', "Output file"},
232 "For the -cmsout operation print out all fields of the CMS structure"},
279 BIO *in = NULL, *out = NULL, *indata = NULL, *rctin = NULL;
931 out = bio_open_default(outfile, 'w',
933 if (out == NULL)
1146 if (!CMS_decrypt(cms, NULL, NULL, indata, out, flags)) {
1151 if (!CMS_data(cms, out, flags))
1154 if (!CMS_uncompress(cms, indata, out, flags))
1157 if (CMS_digest_verify(cms, indata, out, flags) > 0) {
1165 indata, out, flags))
1168 if (CMS_verify(cms, other, store, indata, out, flags) > 0) {
1211 CMS_ContentInfo_print_ctx(out, cms, 0, pctx);
1216 BIO_printf(out, "To: %s%s", to, mime_eol);
1218 BIO_printf(out, "From: %s%s", from, mime_eol);
1220 BIO_printf(out, "Subject: %s%s", subject, mime_eol);
1222 ret = SMIME_write_CMS(out, cms, indata, flags);
1224 ret = SMIME_write_CMS(out, cms, in, flags);
1226 ret = PEM_write_bio_CMS_stream(out, cms, in, flags);
1228 ret = i2d_CMS_bio_stream(out, cms, in, flags);
1275 BIO_free_all(out);