[#OSSL_CMP_SRV_cert_request_cb_t] = OSSL_CMP_SRV_cert_request_cb_t :mrdocs: Server callback type for processing IR/CR/KUR/P10CR certificate requests. == Synopsis Declared in `<openssl/cmp.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- typedef xref:OSSL_CMP_PKISI.adoc[OSSL_CMP_PKISI]*(* OSSL_CMP_SRV_cert_request_cb_t)(xref:OSSL_CMP_SRV_CTX.adoc[OSSL_CMP_SRV_CTX]*, xref:OSSL_CMP_MSG.adoc[OSSL_CMP_MSG] const*, int, xref:OSSL_CRMF_MSG.adoc[OSSL_CRMF_MSG] const*, xref:X509_REQ.adoc[X509_REQ] const*, xref:X509.adoc[X509]**, xref:stack_st_X509.adoc[stack_st_X509]**, xref:stack_st_X509.adoc[stack_st_X509]**); ---- == Return Value PKIStatusInfo for the certResponse, allocated by the callback. == Parameters [cols="1,4"] |=== | Name| Description | *srv_ctx* | CMP server context. | *req* | Incoming request message. | *certReqId* | Certificate request ID from the message body. | *crm* | CRMF CertReqMsg, if present. | *p10cr* | PKCS#10 request, if present. | *certOut* | Receives the issued certificate allocated by the callback. | *chainOut* | Receives an optional chain allocated by the callback. | *caPubs* | Receives optional caPubs allocated by the callback. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#