Lines Matching defs:out
34 BIO *out = NULL;
71 out = BIO_new(BIO_s_file());
72 if (out == NULL ||
73 BIO_write_filename(out, pem_file) <= 0)
78 X509_print(out, cert);
79 PEM_write_bio_X509(out, cert);
80 BIO_puts(out, "\n");
88 if (out)
89 BIO_free_all(out);
342 BIO *out;
452 out = BIO_new(BIO_s_mem());
453 if (out) {
457 X509_REQ_print(out, req);
458 rlen = BIO_ctrl_pending(out);
461 int res = BIO_read(out, txt, rlen);
469 BIO_free(out);