<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="8.19.0" />

Microsoft.IdentityModel.Tokens.CryptoProviderCacheOptions

Specifies the CryptoProviderCacheOptions which can be used to configure the internal cryptoprovider cache. We are using our own simple LRU caching implementation across all targets. See EventBasedLRUCache<T, U> for more details.
namespace Microsoft.IdentityModel.Tokens { public class CryptoProviderCacheOptions { public static readonly int DefaultSizeLimit; public int SizeLimit { get; set; } public CryptoProviderCacheOptions(); } }