1 write to AllowUntrustedRoot
NuGet.Packaging (1)
Signing\TrustedSigners\TrustedSignersProvider.cs (1)
107
existingEntry.Certificate.
AllowUntrustedRoot
= false;
6 references to AllowUntrustedRoot
NuGet.Commands (1)
TrustedSignersCommand\TrustedSignersCommandRunner.cs (1)
243
var summaryAllowUntrustedRoot = (cert.
AllowUntrustedRoot
) ? Strings.TrustedSignerLogCertificateSummaryAllowUntrustedRoot : Strings.TrustedSignerLogCertificateSummaryUnallowUntrustedRoot;
NuGet.Configuration (2)
Settings\Items\CertificateItem.cs (2)
91
UpdateAttribute(ConfigurationConstants.AllowUntrustedRoot,
AllowUntrustedRoot
.ToString(CultureInfo.CurrentCulture).ToLower(CultureInfo.InvariantCulture));
96
var newItem = new CertificateItem(Fingerprint, HashAlgorithm,
AllowUntrustedRoot
);
NuGet.Packaging (3)
Signing\TrustedSigners\TrustedSignersProvider.cs (3)
101
if (existingEntry.Certificate.
AllowUntrustedRoot
!= certificate.
AllowUntrustedRoot
)
172
return new TrustedSignerAllowListEntry(Target, Placement, Certificate.Fingerprint, Certificate.HashAlgorithm, Certificate.
AllowUntrustedRoot
, Owners?.ToList());