[#ASN1_item_unpack] = ASN1_item_unpack :mrdocs: Decode the DER content of an OCTET STRING / ASN1_STRING using item `it.` == Synopsis Declared in `<openssl/asn1.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void* ASN1_item_unpack( xref:ASN1_STRING.adoc[ASN1_STRING] const* oct, xref:ASN1_ITEM.adoc[ASN1_ITEM] const* it); ---- == 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. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#