Lines Matching refs:derbio
216 BIO *acbio = NULL, *cbio = NULL, *derbio = NULL, *out = NULL;
566 derbio = bio_open_default(reqin, 'r', FORMAT_ASN1);
567 if (derbio == NULL)
569 req = d2i_OCSP_REQUEST_bio(derbio, NULL);
570 BIO_free(derbio);
716 derbio = bio_open_default(reqout, 'w', FORMAT_ASN1);
717 if (derbio == NULL)
719 i2d_OCSP_REQUEST_bio(derbio, req);
720 BIO_free(derbio);
743 derbio = bio_open_default(respin, 'r', FORMAT_ASN1);
744 if (derbio == NULL)
746 resp = d2i_OCSP_RESPONSE_bio(derbio, NULL);
747 BIO_free(derbio);
760 derbio = bio_open_default(respout, 'w', FORMAT_ASN1);
761 if (derbio == NULL)
763 i2d_OCSP_RESPONSE_bio(derbio, resp);
764 BIO_free(derbio);