[#ASN1_item_unpack_ex] = ASN1_item_unpack_ex :mrdocs: Decode DER from an ASN1_STRING using `it,` with library context for algorithm fetches. == Synopsis Declared in `<openssl/asn1.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void* ASN1_item_unpack_ex( xref:ASN1_STRING.adoc[ASN1_STRING] const* oct, xref:ASN1_ITEM.adoc[ASN1_ITEM] const* it, xref:OSSL_LIB_CTX.adoc[OSSL_LIB_CTX]* libctx, char const* propq); ---- == Return Value Newly allocated typed value, or NULL on error; free with ASN1_item_free. == Parameters [cols="1,4"] |=== | Name| Description | *oct* | String whose content octets are treated as DER input. | *it* | ASN.1 item descriptor for the type to decode. | *libctx* | Library context for algorithm fetches, or NULL for the default. | *propq* | Property query for algorithm fetches, or NULL. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#