Lines Matching full:derbio
144 BIO *derbio = NULL;
637 derbio = BIO_new_file(reqin, "rb");
638 if (!derbio)
643 req = d2i_OCSP_REQUEST_bio(derbio, NULL);
644 BIO_free(derbio);
739 derbio = BIO_new_file(reqout, "wb");
740 if(!derbio)
745 i2d_OCSP_REQUEST_bio(derbio, req);
746 BIO_free(derbio);
782 derbio = BIO_new_file(respin, "rb");
783 if (!derbio)
788 resp = d2i_OCSP_RESPONSE_bio(derbio, NULL);
789 BIO_free(derbio);
807 derbio = BIO_new_file(respout, "wb");
808 if(!derbio)
813 i2d_OCSP_RESPONSE_bio(derbio, resp);
814 BIO_free(derbio);