6 instantiations of Timestamp
Microsoft.DotNet.SignCheckLibrary (6)
Verification\AuthentiCode.cs (2)
240var timeStamp = new Timestamp 293var timeStamp = 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()
22 references to Timestamp
Microsoft.DotNet.SignCheckLibrary (22)
Verification\AuthentiCode.cs (10)
25public static IEnumerable<Timestamp> GetTimestamps(string path) => 26string.IsNullOrEmpty(path) ? Enumerable.Empty<Timestamp>() : GetTimestampsInternal(path); 156private static IEnumerable<Timestamp> GetTimestampsInternal(string path) 161return Enumerable.Empty<Timestamp>(); 217private static IEnumerable<Timestamp> ExtractTimestamps(SignedCms signedCms) 219var timestamps = new List<Timestamp>(); 240var timeStamp = new Timestamp 280private static IEnumerable<Timestamp> GetTimestampsFromCounterSignature(AsnEncodedData unsignedAttribute) 282var timestamps = new List<Timestamp>(); 293var timeStamp = new Timestamp
Verification\AuthentiCodeVerifier.cs (1)
55foreach (Timestamp timestamp in svr.Timestamps)
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; 164/// A collection of <see cref="Timestamp"/>s associated with the AuthentiCode signature(s). 166public ICollection<Timestamp> Timestamps 172_timestamps = new List<Timestamp>();