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