7 instantiations of Timestamp
Microsoft.DotNet.SignCheckLibrary (7)
Verification\AuthentiCode.cs (2)
111var timeStamp = new Timestamp 164var timeStamp = new Timestamp
Verification\Jar\JarSignatureFile.cs (1)
275Timestamps.Add(new Timestamp
Verification\LinuxPackageVerifier.cs (1)
91return new Timestamp()
Verification\MachOVerifier.cs (2)
98var ts = new Timestamp() 113var ts = new Timestamp()
Verification\PkgVerifier.cs (1)
131return new Timestamp()
29 references to Timestamp
Microsoft.DotNet.SignCheckLibrary (29)
Verification\AuthentiCode.cs (10)
22public static IEnumerable<Timestamp> GetTimestamps(string path, ISecurityInfoProvider securityInfoProvider) => 23string.IsNullOrEmpty(path) ? Enumerable.Empty<Timestamp>() : GetTimestampsInternal(path, securityInfoProvider); 61private static IEnumerable<Timestamp> GetTimestampsInternal(string path, ISecurityInfoProvider securityInfoProvider) 71return Enumerable.Empty<Timestamp>(); 88private static IEnumerable<Timestamp> ExtractTimestamps(SignedCms signedCms) 90var timestamps = new List<Timestamp>(); 111var timeStamp = new Timestamp 151private static IEnumerable<Timestamp> GetTimestampsFromCounterSignature(AsnEncodedData unsignedAttribute) 153var timestamps = new List<Timestamp>(); 164var timeStamp = new Timestamp
Verification\AuthentiCodeVerifier.cs (1)
77foreach (Timestamp timestamp in svr.Timestamps)
Verification\Jar\JarFile.cs (1)
75public IEnumerable<Timestamp> Timestamps
Verification\Jar\JarSignatureFile.cs (3)
19private List<Timestamp> _timestamps; 78public ICollection<Timestamp> Timestamps 84_timestamps = new List<Timestamp>();
Verification\JarVerifier.cs (3)
37foreach (Timestamp timestamp in jarFile.Timestamps) 42IEnumerable<Timestamp> invalidTimestamps = from ts in jarFile.Timestamps 46foreach (Timestamp ts in invalidTimestamps)
Verification\LinuxPackageVerifier.cs (2)
65Timestamp ts = GetTimestamp(verificationOutput); 78private Timestamp GetTimestamp(string verificationOutput)
Verification\MachOVerifier.cs (2)
98var ts = new Timestamp() 113var ts = new Timestamp()
Verification\PkgVerifier.cs (3)
98IEnumerable<Timestamp> timestamps = GetTimestamps(output); 105foreach (Timestamp ts in timestamps) 119private IEnumerable<Timestamp> GetTimestamps(string signingVerificationOutput)
Verification\SignatureVerificationResult.cs (4)
17private List<Timestamp> _timestamps; 173/// A collection of <see cref="Timestamp"/>s associated with the AuthentiCode signature(s). 175public ICollection<Timestamp> Timestamps 181_timestamps = new List<Timestamp>();