7 writes to EffectiveDate
Microsoft.DotNet.SignCheckLibrary (7)
Verification\AuthentiCode.cs (2)
114EffectiveDate = Convert.ToDateTime(cert.GetEffectiveDateString()).ToLocalTime(), 167EffectiveDate = Convert.ToDateTime(rfc3161SignerInfo.Certificate.GetEffectiveDateString()).ToLocalTime(),
Verification\Jar\JarSignatureFile.cs (1)
278EffectiveDate = Convert.ToDateTime(timestampSignerCert.GetEffectiveDateString()).ToLocalTime(),
Verification\LinuxPackageVerifier.cs (1)
96EffectiveDate = keyInfoMatch.GroupValueOrDefault("createdOn").DateTimeOrDefault(DateTime.MaxValue)
Verification\MachOVerifier.cs (2)
101EffectiveDate = DateTime.MaxValue, 116EffectiveDate = effectiveOn,
Verification\PkgVerifier.cs (1)
133EffectiveDate = signedOnTimestamp,
5 references to EffectiveDate
Microsoft.DotNet.SignCheckLibrary (5)
Verification\JarVerifier.cs (1)
48svr.AddDetail(DetailKeys.Error, SignCheckResources.DetailTimestampOutisdeCertValidity, ts.SignedOn, ts.EffectiveDate, ts.ExpiryDate);
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);