Lines Matching defs:out
35 * The word 'cryptographic' can be left out if the rouines from the library
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
77 * -out arg - output file - default stdout
87 BIO *in=NULL,*out=NULL;
130 else if (strcmp(*argv,"-out") == 0)
168 BIO_printf(bio_err," -out arg output file\n");
186 out=BIO_new(BIO_s_file());
187 if ((in == NULL) || (out == NULL))
223 BIO_set_fp(out,stdout,BIO_NOCLOSE);
227 out = BIO_push(tmpbio, out);
233 if (BIO_write_filename(out,outfile) <= 0)
241 PKCS7_print_ctx(out, p7, 0, NULL);
270 if(text) X509_print(out, x);
271 else dump_cert_text(out, x);
273 if(!noout) PEM_write_bio_X509(out,x);
274 BIO_puts(out,"\n");
285 X509_CRL_print(out, crl);
287 if(!noout)PEM_write_bio_X509_CRL(out,crl);
288 BIO_puts(out,"\n");
298 i=i2d_PKCS7_bio(out,p7);
300 i=PEM_write_bio_PKCS7(out,p7);
317 if (out != NULL) BIO_free_all(out);