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