<PackageReference Include="BouncyCastle.Cryptography" Version="2.5.0" />

IStore<T>

public interface IStore<T>
A generic interface describing a simple store of objects.
using System.Collections.Generic; namespace Org.BouncyCastle.Utilities.Collections { public interface IStore<out T> { IEnumerable<T> EnumerateMatches(ISelector<T> selector); } }