Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Pouliot <sebastien@ximian.com>2004-04-09 21:14:38 +0400
committerSebastien Pouliot <sebastien@ximian.com>2004-04-09 21:14:38 +0400
commitc6b4762ea544bb9b0ebd85e5cb71415285f7b51d (patch)
tree66a70efd445a44071635062d971fe1aa08e10c7d /man/signcode.1
parenta3e7e16e5c65a7cd70434186e3cd1ad6dbfe9d1e (diff)
2004-04-09 Sebastien Pouliot <sebastien@ximian.com>
* chktrust.1: Added some details and documented the CAB format restriction (not supported). * makecert.1: Added missing options, details for existing options and removed duplicate options. * setreg.1: Minor changes. * signcode.1: Added some details and documented the CAB format restriction (not supported). Also added a warning when using both a strongname and an Authenticode signature on a assembly. svn path=/trunk/mono/; revision=25253
Diffstat (limited to 'man/signcode.1')
-rwxr-xr-xman/signcode.118
1 files changed, 15 insertions, 3 deletions
diff --git a/man/signcode.1 b/man/signcode.1
index 3a65fd4b65d..1226d55c1b9 100755
--- a/man/signcode.1
+++ b/man/signcode.1
@@ -1,8 +1,9 @@
.\"
.\" signcode manual page.
.\" Copyright 2003 Motus Technologies
+.\" Copyright 2004 Novell
.\" Author:
-.\" Sebastien Pouliot (spouliot@motus.com)
+.\" Sebastien Pouliot (sebastien@ximian.com)
.\"
.TH Mono "signcode"
.SH NAME
@@ -13,7 +14,8 @@ signcode \- Digitally sign an PE executable using an X.509 certificate.
.SH DESCRIPTION
Digitally sign an PE executable (CLR assembly, Win32 EXE or DLL) using an
X.509 certificate and it's associated private key. The signature is compatible
-with Authenticode(r) and can be validated with chktrust.
+with Authenticode(r) and can be validated with chktrust (either on Windows or
+on any platform supported by Mono).
.SH OPTIONS
.TP
.I "-spc spcfile"
@@ -48,7 +50,7 @@ had a valid (non-expired) certificate when the PE executable was signed.
.I "-tr #"
Number of retries to get a timestamp for the countersignature.
.TP
-.I "-td #"
+.I "-tw #"
Delay (in seconds) between the retries to get a timestamp for the countersignature.
.TP
.I "-k name"
@@ -68,10 +70,20 @@ CryptoAPI key location (when not using -v).
.TP
.I "-help", "-h", "-?", "/?"
Display help about this tool.
+.SH OTHER CODE SIGNING TECHNOLOGIES
+Assemblies are PE files that can also be strongnamed using the sn.exe tool. The
+order of code signature is important if a file requires both an Authenticode
+and a strongname signature. Strongname must be applied before the Authenticode
+signature. Applying a strongname after the Authenticode signature, like
+re-signing an assembly (e.g. delay-sign), will invalidate the Authenticode
+signature.
+.SH KNOWN RESTRICTIONS
+signcode cannot generate Authenticode signatures for CAB files.
.SH AUTHOR
Written by Sebastien Pouliot
.SH COPYRIGHT
Copyright (C) 2003 Motus Technologies.
+Copyright (C) 2004 Novell.
Released under BSD license.
.SH MAILING LISTS
Visit http://mail.ximian.com/mailman/mono-list for details.