Home
last modified time | relevance | path

Searched refs:derbio (Results 1 – 2 of 2) sorted by relevance

/freebsd/crypto/openssl/apps/
H A Docsp.c256 BIO *acbio = NULL, *cbio = NULL, *derbio = NULL, *out = NULL; in ocsp_main() local
604 derbio = bio_open_default(reqin, 'r', FORMAT_ASN1); in ocsp_main()
605 if (derbio == NULL) in ocsp_main()
607 req = d2i_OCSP_REQUEST_bio(derbio, NULL); in ocsp_main()
608 BIO_free(derbio); in ocsp_main()
760 derbio = bio_open_default(reqout, 'w', FORMAT_ASN1); in ocsp_main()
761 if (derbio == NULL) in ocsp_main()
763 i2d_OCSP_REQUEST_bio(derbio, req); in ocsp_main()
764 BIO_free(derbio); in ocsp_main()
787 derbio = bio_open_default(respin, 'r', FORMAT_ASN1); in ocsp_main()
[all …]
H A Ds_server.c612 BIO *derbio = bio_open_default(srctx->respin, 'r', FORMAT_ASN1); in cert_status_cb() local
613 if (derbio == NULL) { in cert_status_cb()
617 resp = d2i_OCSP_RESPONSE_bio(derbio, NULL); in cert_status_cb()
618 BIO_free(derbio); in cert_status_cb()