Show / Hide Table of Contents

Entries Property

Entries

The list of entries in the Large Blob Array.

C#
public IReadOnlyList<LargeBlobEntry> Entries { get; }

Property Value

Type Description
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.

In this article
Back to top Generated by DocFX