SignTool Module
The SignTool tool is a command-line tool that digitally signs files, verifies signatures in files, or time stamps files.
Types
Type | Description |
Functions and values
Function or value | Description |
Full Usage:
SignTool.sign certificate setOptions files
Parameters:
SignCertificate
-
The signing certificate
setOptions : SignOptions -> SignOptions
-
The sign tool options
files : seq<string>
-
The files list to sign
|
|
Full Usage:
SignTool.signWithTimeStamp certificate setSignOptions serverUrl setTimeStampOptions files
Parameters:
SignCertificate
-
The signing certificate
setSignOptions : SignOptions -> SignOptions
-
The sign tool options
serverUrl : string
-
The timestamp server URL
setTimeStampOptions : TimeStampOption -> TimeStampOption
-
The signing timestamp options
files : seq<string>
-
The files list to sign
|
|
Full Usage:
SignTool.timeStamp serverUrl setOptions files
Parameters:
string
-
The timestamp server URL
setOptions : TimeStampOptions -> TimeStampOptions
-
The signing timestamp options
files : seq<string>
-
The files list to sign
|
Time stamps files according to the options specified. The files being time stamped must have previously been signed.
|
Full Usage:
SignTool.verify setOptions files
Parameters:
VerifyOptions -> VerifyOptions
-
The verifying options
files : seq<string>
-
The files list to verify the signing
|
Verifies files according to the options specified. The SignTool verify command determines whether the signing certificate was issued by a trusted authority, whether the signing certificate has been revoked, and, optionally, whether the signing certificate is valid for a specific policy.
|