[#ASN1_TYPE_unpack_sequence] = ASN1_TYPE_unpack_sequence :mrdocs: Decode the SEQUENCE contents of an ASN1_TYPE into a typed structure. == Synopsis Declared in `<openssl/asn1.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void* ASN1_TYPE_unpack_sequence( xref:ASN1_ITEM.adoc[ASN1_ITEM] const* it, xref:ASN1_TYPE.adoc[ASN1_TYPE] const* t); ---- == Return Value Newly allocated structure of the type described by `it,` or NULL on error. == Parameters [cols="1,4"] |=== | Name| Description | *it* | ASN.1 item describing the expected SEQUENCE type. | *t* | ASN1_TYPE whose value holds SEQUENCE octets (typically V_ASN1_SEQUENCE). |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#