[#OCSP_request_verify] = OCSP_request_verify :mrdocs: Verify the signature on a signed OCSP request. == Synopsis Declared in `<openssl/ocsp.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int OCSP_request_verify( xref:OCSP_REQUEST.adoc[OCSP_REQUEST]* req, xref:stack_st_X509.adoc[stack_st_X509]* certs, xref:X509_STORE.adoc[X509_STORE]* store, unsigned long flags); ---- == Return Value 1 on successful verification, or 0 on failure. == Parameters [cols="1,4"] |=== | Name| Description | *req* | Signed OCSP request to verify. | *certs* | Optional additional certificates for path building, or NULL. | *store* | Trusted certificate store used for verification. | *flags* | OCSP_* / X509 verify flags controlling verification behaviour. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#