Home | History | Annotate | Download | only in apps

Lines Matching full:derbio

114 	BIO *derbio = NULL;
590 derbio = BIO_new_file(reqin, "rb");
591 if (!derbio)
596 req = d2i_OCSP_REQUEST_bio(derbio, NULL);
597 BIO_free(derbio);
691 derbio = BIO_new_file(reqout, "wb");
692 if(!derbio)
697 i2d_OCSP_REQUEST_bio(derbio, req);
698 BIO_free(derbio);
734 derbio = BIO_new_file(respin, "rb");
735 if (!derbio)
740 resp = d2i_OCSP_RESPONSE_bio(derbio, NULL);
741 BIO_free(derbio);
759 derbio = BIO_new_file(respout, "wb");
760 if(!derbio)
765 i2d_OCSP_RESPONSE_bio(derbio, resp);
766 BIO_free(derbio);