Asn1Element
class Asn1Element(val tag: Asn1Tag, val rawValue: ByteArray, val children: List<Asn1Element>, val fullEncoding: ByteArray)(source)
Represents a parsed ASN.1 DER element (TLV — Tag, Length, Value).
For constructed types (SEQUENCE, SET, context-specific constructed), the children list contains the recursively parsed sub-elements. For primitive types, children is empty.
Constructors
Link copied to clipboard
constructor(tag: Asn1Tag, rawValue: ByteArray, children: List<Asn1Element>, fullEncoding: ByteArray)