EncodedArray Property
EncodedArray
The encoded Large Blob Array. This is the data that is digested. That is, perform Left16Bytes(SHA-256(EncodedArray)) and it should equal the Digest.
C#
public Nullable<ReadOnlyMemory<byte>> EncodedArray { get; }
Property Value
Type | Description |
---|---|
System.Nullable<System.ReadOnlyMemory<System.Byte>> |
Remarks
When you get the Serialized Large Blob Array from the YubiKey, this property (and the Digest property) are set. You can verify the digest at this point.
As soon as this class detects a change to one of the entries, this
property and the Digest
property are no longer valid and will
be set to null. If you call Encode() or
SetSerializedLargeBlobArray(SerializedLargeBlobArray) and this property is
null, the array will be rebuilt.