4 instantiations of Timestamp
Microsoft.DotNet.SignCheckLibrary (4)
Verification\AuthentiCode.cs (2)
79var timeStamp = new Timestamp 164var timeStamp = new Timestamp
Verification\Jar\JarSignatureFile.cs (1)
275Timestamps.Add(new Timestamp
Verification\VsixVerifier.cs (1)
44timestamp = new Timestamp()
20 references to Timestamp
Microsoft.DotNet.SignCheckLibrary (20)
Verification\AuthentiCode.cs (6)
66public static IEnumerable<Timestamp> GetTimestampsFromCounterSignature(AsnEncodedData unsignedAttribute) 68var timestamps = new List<Timestamp>(); 79var timeStamp = new Timestamp 94public static IEnumerable<Timestamp> GetTimestamps(string path) 101var timestamps = new List<Timestamp>(); 164var timeStamp = new Timestamp
Verification\AuthentiCodeVerifier.cs (1)
63foreach (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\SignatureVerificationResult.cs (4)
17private List<Timestamp> _timestamps; 155/// A collection of <see cref="Timestamp"/>s associated with the AuthentiCode signature(s). 157public ICollection<Timestamp> Timestamps 163_timestamps = new List<Timestamp>();
Verification\VsixVerifier.cs (2)
35private bool TryGetTimestamp(PackageDigitalSignature packageSignature, out Timestamp timestamp) 149Timestamp timestamp;