From: Sebastien Pouliot Date: Fri, 24 Jan 2003 02:47:00 +0000 (-0000) Subject: 2003-01-23 Sebastien Pouliot X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=d04a876547d9173b9d9545743e43b9ba5b8426f9;p=mono.git 2003-01-23 Sebastien Pouliot * cert2spc.1: man page for cert2spc tool * secutil.1: man page for secutil tool svn path=/trunk/mono/; revision=10855 --- diff --git a/man/cert2spc.1 b/man/cert2spc.1 new file mode 100644 index 00000000000..9329e9da3c4 --- /dev/null +++ b/man/cert2spc.1 @@ -0,0 +1,42 @@ +.\" +.\" cert2spc manual page. +.\" Copyright 2002, 2003 Motus Technologies +.\" Author: +.\" Sebastien Pouliot (spouliot@motus.com) +.\" +.TH Mono "cert2spc" +.SH NAME +cert2spc \- Transform multiple X.509 certificates to a Software +Publisher Certificate +.SH SYNOPSIS +.PP +.B cert2spc certificate|crl [certificate|crl ...] outputfile.spc +.SH DESCRIPTION +Combine a list of X.509 certificates or X.509 CRL (Certificate +Revocation List) into a Software Publisher Certificate (PKCS#7 +file). The SPC file is required for signing a PE file (like an +assembly) using signcode. +.SH PARAMETERS +.TP +.I "certificate" +One (or more) X.509 certificate to add (space separated). +.TP +.I "crl" +One (or more) X.509 CRL to add (space separated). +.TP +.I "output.spc" +Software Publisher Certificate to output. If the specified file +exists it will be overwritten. +.SH AUTHOR +Written by Sebastien Pouliot +.SH COPYRIGHT +Copyright (C) 2002, 2003 Motus Technologies. +Released under BSD license. +.SH MAILING LISTS +Visit http://mail.ximian.com/mailman/mono-list for details. +.SH WEB SITE +Visit: http://www.go-mono.com for details +.SH SEE ALSO +.BR makecert(1), signcode(1) + + diff --git a/man/secutil.1 b/man/secutil.1 new file mode 100644 index 00000000000..9469721505d --- /dev/null +++ b/man/secutil.1 @@ -0,0 +1,45 @@ +.\" +.\" secutil manual page. +.\" Copyright 2002, 2003 Motus Technologies +.\" Author: +.\" Sebastien Pouliot (spouliot@motus.com) +.\" +.TH Mono "secutil" +.SH NAME +secutil \- Extract X.509 certificates and strongnames from assemblies. +.SH SYNOPSIS +.PP +.B secutil [options] filename +.SH DESCRIPTION +Extract X.509 certificates and strongnames from assemblies in a +format that can be easily re-used in source code (C# or VB.NET syntax). +.SH OPTIONS +.TP +.I "-s assembly", "-strongname assembly" +Display strongname informations about the assembly. +.TP +.I "-x assembly", "-x509certificate assembly" +Display the X509 Authenticode certificate for the assembly. +.TP +.I "-a", "-array" +Display data in a decimal array (default). +.TP +.I "-v", "-vbmode" +Display data in a VisualBasic friendly format. +.TP +.I "-c", "-cmode" +Display data in a C/C++/C# friendly format (default). +.TP +.I "-help", "-h", "-?" +Display help about this tool. +.SH AUTHOR +Written by Sebastien Pouliot +.SH COPYRIGHT +Copyright (C) 2002, 2003 Motus Technologies. +Released under BSD license. +.SH MAILING LISTS +Visit http://mail.ximian.com/mailman/mono-list for details. +.SH WEB SITE +Visit: http://www.go-mono.com for details +.SH SEE ALSO +.BR sn(1), signcode(1)