Home | History | Annotate | Download | only in apps

Lines Matching defs:out

49  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
104 BIO *in = NULL, *out = NULL, *indata = NULL;
356 else if (!strcmp (*args, "-out"))
473 BIO_printf (bio_err, "-out file output file\n");
652 if (!(out = BIO_new_file(outfile, outmode)))
661 out = BIO_new_fp(stdout, BIO_NOCLOSE);
665 out = BIO_push(tmpbio, out);
747 if (!PKCS7_decrypt(p7, key, recip, out, flags))
756 if (PKCS7_verify(p7, other, store, indata, out, flags))
774 PEM_write_bio_PKCS7(out, p7);
778 BIO_printf(out, "To: %s\n", to);
780 BIO_printf(out, "From: %s\n", from);
782 BIO_printf(out, "Subject: %s\n", subject);
786 SMIME_write_PKCS7(out, p7, indata, 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);
821 BIO_free_all(out);