Lines Matching defs:out
43 {"out", OPT_OUT, '>', "Output file"},
46 {"print", OPT_PRINT, '-', "Print out all fields of the PKCS7 structure"},
58 BIO *in = NULL, *out = NULL;
139 out = bio_open_default(outfile, 'w', outformat);
140 if (out == NULL)
144 PKCS7_print_ctx(out, p7, 0, NULL);
174 X509_print(out, x);
176 dump_cert_text(out, x);
179 PEM_write_bio_X509(out, x);
180 BIO_puts(out, "\n");
189 X509_CRL_print_ex(out, crl, get_nameopt());
192 PEM_write_bio_X509_CRL(out, crl);
193 BIO_puts(out, "\n");
203 i = i2d_PKCS7_bio(out, p7);
205 i = PEM_write_bio_PKCS7(out, p7);
218 BIO_free_all(out);