ASN1Sequence class

Represents a ASN1 BER encoded sequence.

A sequence is a container for other ASN1 objects Objects are serialized sequentially to the stream

Inheritance

Constructors

ASN1Sequence({int tag = CONSTRUCTED_SEQUENCE_TYPE})
Create a new empty ASN1 Sequence. Optionally override the default tag
ASN1Sequence.fromBytes(Uint8List bytes)
Create a sequence fromt the byte array super.bytes.

Properties

elements List<ASN1Object>
getter/setter pair
encodedBytes Uint8List
Get the encoded byte representation for this object. This can trigger calling the subclasss _encode method if the object has not yet been encoded
no setterinherited
extendedTag int?
no setterinherited
hasExtendedTag bool
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
isEncoded bool
Check if the encoding is ready.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
tag int
The BER tag representing this object
finalinherited
totalEncodedByteLength int
The total length of this object in bytes - including its value bytes and the encoded tag and length bytes.
no setterinherited

Methods

add(ASN1Object o) → void
Add an ASN1Object to the sequence. Objects will be serialized to BER in the order they were added
contentBytes() Uint8List
Returns the real content of a tag. This might be equal to valueBytes for some tags.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toHexString() String
inherited
toString() String
A string representation of this object.
override
valueBytes() Uint8List
Return just the value bytes.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited