4 writes to EffectiveDate
Microsoft.DotNet.SignCheckLibrary (4)
Verification\AuthentiCode.cs (2)
243EffectiveDate = Convert.ToDateTime(cert.GetEffectiveDateString()).ToLocalTime(), 296EffectiveDate = Convert.ToDateTime(rfc3161SignerInfo.Certificate.GetEffectiveDateString()).ToLocalTime(),
Verification\LinuxPackageVerifier.cs (1)
96EffectiveDate = keyInfoMatch.GroupValueOrDefault("createdOn").DateTimeOrDefault(DateTime.MaxValue)
Verification\PkgVerifier.cs (1)
133EffectiveDate = signedOnTimestamp,
4 references to EffectiveDate
Microsoft.DotNet.SignCheckLibrary (4)
Verification\Timestamp.cs (4)
23/// True if the file was signed on or after the <see cref="EffectiveDate"/> and on or prior to the <see cref="ExpiryDate"./> 29return (SignedOn >= EffectiveDate) && (SignedOn <= ExpiryDate); 62if (SignedOn == DateTime.MaxValue || ExpiryDate == DateTime.MinValue || EffectiveDate == DateTime.MaxValue) 68svr.AddDetail(DetailKeys.Error, SignCheckResources.DetailTimestampOutisdeCertValidity, SignedOn, EffectiveDate, ExpiryDate);