[#ASN1_parse_dump] = ASN1_parse_dump :mrdocs: Recursively dump a DER ASN.1 structure to a BIO, optionally hex‐dumping string contents. == Synopsis Declared in `<openssl/asn1.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int ASN1_parse_dump( xref:BIO.adoc[BIO]* bp, unsigned char const* pp, long len, int indent, int dump); ---- == Return Value 1 on success, or 0 on parse error. == Parameters [cols="1,4"] |=== | Name| Description | *bp* | BIO that receives the human‐readable parse tree. | *pp* | DER encoding to parse. | *len* | Number of bytes at `pp.` | *indent* | Indentation depth in spaces for the top‐level element. | *dump* | If nonzero, print hex dumps of OCTET STRING and similar contents. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#