Lines Matching refs:bio
599 BIO *bio = nullptr;
614 bio = BIO_new(BIO_s_mem());
615 if (!bio) {
616 WRITE_LOG(LOG_FATAL, "alloc bio mem failed");
619 if (!PEM_write_bio_PUBKEY(bio, evp)) {
620 WRITE_LOG(LOG_FATAL, "write bio failed");
625 if (BIO_read_ex(bio, buf, sizeof(buf), &len) <= 0) {
626 WRITE_LOG(LOG_FATAL, "read bio failed");
638 if (bio) {
639 BIO_free(bio);
640 bio = nullptr;