Encapsulation of Basic Encoding Rule: Type, Length, Value (BER-TLV) data structures.
This class implements a BER-TLV structure as per the X.690 standard.
Note that this structure is nested - a BER-TLV object may encode a collection of other BER-TLV structures, or it may encode primitive data.
Additional information may be found at:
Thread safety:
Instance Methods | |
(NSData *_Nonnull) | - get |
Extract the data, in raw BER-TLV binary format. More... | |
(NSArray< GrabbaBER_TLV * > *_Nonnull) | - getConstructed |
Copy the constructed data, if any; for primitive BER-TLV objects, this property holds an empty collection. More... | |
(NSData *_Nonnull) | - getPrimitive |
Copy the primitive data, if any; for constructed BER-TLV objects, this property holds an empty NSData object. More... | |
(instancetype _Nullable) | - init |
Not callable (NS_UNAVAILABLE ) - this capability will be added in a future release. More... | |
Properties | |
BOOL | constructed |
Is the stored value constructed of other BER-TLV objects? More... | |
uint64_t | constructedSize |
Count of nested BER-TLV structures in the constructed data, if any; for primitive BER-TLV objects, this will be zero. More... | |
BOOL | definiteLength |
Is the stored length for this structure definite? More... | |
GrabbaBER_ID_Class | idClass |
Type field's ID class. More... | |
uint64_t | length |
Stored length for this structure (in bytes); if the stored length is indefinite then this will be zero. More... | |
BOOL | primitive |
Is the stored value primitive? More... | |
uint64_t | primitiveSize |
Size in bytes of the primitive data; for constructed BER-TLV objects, this will be zero. More... | |
uint64_t | size |
Overall size (in bytes) of the structure - i.e. the length of the data returned by get. More... | |
uint64_t | tag |
Type field's ID tag. More... | |
- (NSData* _Nonnull) get |
Extract the data, in raw BER-TLV binary format.
- (NSArray<GrabbaBER_TLV*>* _Nonnull) getConstructed |
Copy the constructed data, if any; for primitive BER-TLV objects, this property holds an empty collection.
- (NSData* _Nonnull) getPrimitive |
Copy the primitive data, if any; for constructed BER-TLV objects, this property holds an empty NSData object.
- (instancetype _Nullable) init |
Not callable (NS_UNAVAILABLE
) - this capability will be added in a future release.
|
readnonatomicassign |
Is the stored value constructed of other BER-TLV objects?
NO if the stored data is primitive; YES if it is constructed of other BER-TLV objects. Opposite of primitive.
|
readnonatomicassign |
Count of nested BER-TLV structures in the constructed data, if any; for primitive BER-TLV objects, this will be zero.
|
readnonatomicassign |
Is the stored length for this structure definite?
YES if the length is definite (known), NO if it is indefinite (unknown)
|
readnonatomicassign |
Type field's ID class.
|
readnonatomicassign |
|
readnonatomicassign |
Is the stored value primitive?
YES if the stored data is primitive; NO if it is constructed of other BER-TLV objects. Opposite of constructed.
|
readnonatomicassign |
Size in bytes of the primitive data; for constructed BER-TLV objects, this will be zero.
|
readnonatomicassign |
Overall size (in bytes) of the structure - i.e. the length of the data returned by get.
|
readnonatomicassign |
Type field's ID tag.