ASN1BitString class

An ASN1 Bit String object

Inheritance

Constructors

ASN1BitString({List<int>? stringValues, List<ASN1Object>? elements, int tag = ASN1Tags.BIT_STRING})
Create an ASN1BitString entity with the given stringValues.
ASN1BitString.fromBytes(Uint8List bytes)
Creates an ASN1BitString entity from the given encodedBytes.

Properties

dumpIndent int
getter/setter pairinherited
elements List<ASN1Object>?
A list of elements. Only set if this ASN1IA5String is constructed, otherwhise null.
getter/setter pair
encodedBytes Uint8List?
The encoded bytes.
getter/setter pairinherited
hashCode int
The hash code for this object.
no setterinherited
isConstructed bool?
Describes if this ASN1 Object is constructed.
getter/setter pairinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
stringValues List<int>?
The decoded string value
getter/setter pair
tag int?
The BER tag representing this object.
getter/setter pairinherited
totalEncodedByteLength int
The total length of this object, including its value bytes, the encoded tag and length bytes.
no setterinherited
unusedbits int?
The unused bits
getter/setter pair
valueByteLength int?
Length of the encoded value bytes.
getter/setter pairinherited
valueBytes Uint8List?
The value bytes.
getter/setter pairinherited
valueStartPosition int
The index where the value bytes start. This is the position after the tag + length bytes.
getter/setter pairinherited

Methods

dump({int spaces = 0}) String
Creates a readable dump from the current ASN1Object.
override
encode({ASN1EncodingRule encodingRule = ASN1EncodingRule.ENCODING_DER}) Uint8List
Encodes this ASN1Object depending on the given encodingRule
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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