Entries Property
Entries
The list of entries in the Large Blob Array.
C#
public IReadOnlyList<LargeBlobEntry> Entries { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<LargeBlobEntry> |
Remarks
After getting a Serialized Large Blob Array from a YubiKey, this list will contain all of the entries currently stored. You can now delete or add entries. If you want to "edit" an existing entry, add a new entry with the updated information, then delete the previous version.
Upon retrieval, each entry's blob data is still encrypted. Use TryDecrypt(ReadOnlyMemory<Byte>, out Memory<Byte>) to see the actual data.