[#OSSL_CMP_ITAV_get0_rootCaKeyUpdate] = OSSL_CMP_ITAV_get0_rootCaKeyUpdate :mrdocs: Extract root CA key‐update certificates from a rootCaKeyUpdate ITAV. == Synopsis Declared in `<openssl/cmp.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int OSSL_CMP_ITAV_get0_rootCaKeyUpdate( xref:OSSL_CMP_ITAV.adoc[OSSL_CMP_ITAV] const* itav, xref:X509.adoc[X509]** newWithNew, xref:X509.adoc[X509]** newWithOld, xref:X509.adoc[X509]** oldWithNew); ---- == Return Value 1 on success, 0 if `itav` is not a rootCaKeyUpdate ITAV or on error. == Parameters [cols="1,4"] |=== | Name| Description | *itav* | ITAV with infoType rootCaKeyUpdate. | *newWithNew* | Receives the newWithNew certificate pointer, or NULL if absent. | *newWithOld* | Receives the newWithOld certificate pointer if non‐NULL, or NULL if absent. | *oldWithNew* | Receives the oldWithNew certificate pointer if non‐NULL, or NULL if absent. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#