Hi,
hat jemand zufällig schon mit OCSP gearbeitet?
Ich habe hier folgenden C Code
Code:
derbio = bio_open_default(respin, 'r', FORMAT_ASN1);
if (derbio == NULL)
goto end;
resp = d2i_OCSP_RESPONSE_bio(derbio, NULL);
BIO_free(derbio);
if (resp == NULL) {
BIO_printf(bio_err, "Error reading OCSP response\n");
goto end;
}
OCSP_RESPONSE_print(out, resp, 0);
scheitere aber dabei, dass d2i_OCSP_RESPONSE_bio ein Makro ist und keine Funktion.
Hat jemand dazu eine Idee?
Peter