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
98 " -out arg - output file - default stdout\n",
115 " -purpose - print out certificate purposes\n",
143 " -C - print out C code forms\n",
180 BIO *out=NULL;
315 else if (strcmp(*argv,"-out") == 0)
676 out=BIO_new(BIO_s_file());
677 if (out == NULL)
684 BIO_set_fp(out,stdout,BIO_NOCLOSE);
688 out = BIO_push(tmpbio, out);
694 if (BIO_write_filename(out,outfile) <= 0)
760 i2a_ASN1_INTEGER(out, ser);
762 BIO_puts(out, "\n");
941 BIO_printf(bio_err,"out of memory\n");
1018 X509_REQ_print(out,rq);
1019 PEM_write_bio_X509_REQ(out,rq);
1025 X509_ocspid_print(out, x);
1036 BIO_printf(out,"Certificate will expire\n");
1041 BIO_printf(out,"Certificate will not expire\n");
1054 i=i2d_X509_bio(out,x);
1057 if (trustout) i=PEM_write_bio_X509_AUX(out,x);
1058 else i=PEM_write_bio_X509(out,x);
1070 i=ASN1_item_i2d_bio(ASN1_ITEM_rptr(NETSCAPE_X509),out,&nx);
1088 BIO_free_all(out);
1118 if (buf == NULL) { BIO_printf(bio_err,"out of mem\n"); goto end; }