Home | History | Annotate | Download | only in client

Lines Matching defs:out

41 	BIO *out = NULL;
91 out = BIO_new(BIO_s_file());
92 if (out == NULL ||
93 BIO_write_filename(out, pem_file) <= 0)
98 X509_print(out, cert);
99 PEM_write_bio_X509(out, cert);
100 BIO_puts(out, "\n");
113 if (out)
114 BIO_free_all(out);
385 BIO *out;
496 out = BIO_new(BIO_s_mem());
497 if (out) {
502 X509_REQ_print(out, req);
504 rlen = BIO_ctrl_pending(out);
507 int res = BIO_read(out, txt, rlen);
515 BIO_free(out);