Lines Matching refs:bio
197 BIO *bio;
200 if ((bio = BIO_new(BIO_s_mem())) == NULL)
203 ASN1_STRING_print_ex(bio, asn1str, ASN1_STRFLGS_ESC_CTRL|
205 len = BIO_pending(bio);
208 len = BIO_read(bio, result, len);
211 BIO_free(bio);
230 BIO *bio;
233 if ((bio = BIO_new(BIO_s_mem())) == NULL)
235 X509_NAME_print_ex(bio, dn, 0, XN_FLAG_RFC2253);
236 len = BIO_pending(bio);
240 len = BIO_read(bio, result, maxlen);
246 len = BIO_read(bio, result, len);
250 BIO_free(bio);
490 BIO *bio;
492 if ((bio = BIO_new_file(file, "r")) == NULL)
494 dh = PEM_read_bio_DHparams(bio, NULL, NULL, NULL);
495 BIO_free(bio);
503 BIO *bio;
505 if ((bio = BIO_new_file(file, "r")) == NULL)
507 group = PEM_read_bio_ECPKParameters(bio, NULL, NULL, NULL);
508 BIO_free(bio);
527 BIO *bio;
532 if ((bio = BIO_new(BIO_s_file_internal())) == NULL)
534 if (BIO_read_filename(bio, file) <= 0) {
535 BIO_free(bio);
540 if ((x509 = PEM_read_bio_X509(bio, NULL, cb, NULL)) == NULL) {
541 BIO_free(bio);
557 while ((x509 = PEM_read_bio_X509(bio, NULL, cb, NULL)) != NULL) {
560 BIO_free(bio);
569 BIO_free(bio);
574 BIO_free(bio);