Lines Matching defs:out
42 BIO *out = NULL;
92 out = BIO_new(BIO_s_file());
93 if (out == NULL ||
94 BIO_write_filename(out, pem_file) <= 0)
99 X509_print(out, cert);
100 PEM_write_bio_X509(out, cert);
101 BIO_puts(out, "\n");
114 if (out)
115 BIO_free_all(out);
398 BIO *out;
509 out = BIO_new(BIO_s_mem());
510 if (out) {
515 X509_REQ_print(out, req);
517 rlen = BIO_ctrl_pending(out);
520 int res = BIO_read(out, txt, rlen);
528 BIO_free(out);