1 type derived from CertificateHashAllowListEntry
NuGet.Packaging (1)
Signing\Verification\TrustedSignerAllowListEntry.cs (1)
11public sealed class TrustedSignerAllowListEntry : CertificateHashAllowListEntry
2 instantiations of CertificateHashAllowListEntry
NuGet.Commands (1)
VerifyCommand\VerifyCommandRunner.cs (1)
59new CertificateHashAllowListEntry(
NuGet.Packaging (1)
Signing\Utility\RepositorySignatureInfoUtility.cs (1)
72repositoryAllowedCertificates.Add(new CertificateHashAllowListEntry(VerificationTarget.Repository, SignaturePlacement.Any, fingerprint!, hashAlgorithm));
6 references to CertificateHashAllowListEntry
NuGet.Packaging (6)
Signing\Utility\RepositorySignatureInfoUtility.cs (3)
56public static IReadOnlyCollection<CertificateHashAllowListEntry>? GetRepositoryAllowList(IEnumerable<IRepositoryCertificateInfo>? repositoryCertificateInfos) 58HashSet<CertificateHashAllowListEntry>? repositoryAllowedCertificates = null; 62repositoryAllowedCertificates = new HashSet<CertificateHashAllowListEntry>();
Signing\Verification\AllowListVerificationProvider.cs (2)
73var certificateHashEntry = allowedEntry as CertificateHashAllowListEntry;
Signing\Verification\CertificateHashAllowListEntry.cs (1)
58if (obj is CertificateHashAllowListEntry hashEntry)