Răsfoiți Sursa

2004-02-26 Sebastien Pouliot <[email protected]>

	* certmgr.1, setreg.1: New. Man files for new security tools.
	* man.xml: updated to include new tools certmgr and setreg.
	* Makefile.am: update to include certmgr and setreg.

svn path=/trunk/mono/; revision=23509
Sebastien Pouliot 22 ani în urmă
părinte
comite
ff868eb33c
4 a modificat fișierele cu 98 adăugiri și 1 ștergeri
  1. 2 1
      man/Makefile.am
  2. 56 0
      man/certmgr.1
  3. 2 0
      man/man.xml
  4. 38 0
      man/setreg.1

+ 2 - 1
man/Makefile.am

@@ -1,4 +1,5 @@
 man_MANS = mcs.1 mono.1 monostyle.1 mono-config.5 sqlsharp.1 oldmono.1 ilasm.1 \
-	   cert2spc.1 cilc.1 genxs.1 wsdl.1 disco.1 soapsuds.1
+	   cert2spc.1 cilc.1 genxs.1 wsdl.1 disco.1 soapsuds.1 makecert.1 \
+	   chktrust.1 setreg.1 sn.1 secutil.1 signcode.1 certmgr.1
 
 EXTRA_DIST = $(man_MANS)

+ 56 - 0
man/certmgr.1

@@ -0,0 +1,56 @@
+.\" 
+.\" certmgr manual page.
+.\" Copyright 2004 Novell
+.\" Author:
+.\"   Sebastien Pouliot <[email protected]>
+.\"
+.TH Mono "certmgr"
+.SH NAME
+certmgr \- Mono Certificate Manager (CLI version)
+.SH SYNOPSIS
+.PP
+.B certmgr [action] [object type] [options] store [filename]
+.SH DESCRIPTION
+This tool allow to add, remove or extract certificates, certificate revocation 
+lists (CRL) or certificate trust lists (CTL) to/from a certificate store. 
+Certificate stores are used to build and validate certificate chains for 
+Authenticode(r) code signing validation and SSL server certificates.
+.SH ACTIONS
+.TP
+.I "-add"
+Add a certificate, CRL or CTL to specified store.
+.TP
+.I "-del"
+Remove a certificate, CRL or CTL from specified store.
+.TP
+.I "-put"
+Copy a certificate, CRL or CTL from a store to a file.
+.SH OBJECT TYPES
+.TP
+.I "-c", "-cert", "-certificate"
+Add, Delete or Put certificates. That is the specified file must/will contains
+X.509 certificates in DER binary encoding.
+.TP
+.I "-crl"
+Add, Delete or Put certificate revocation lists (CRL). That is the specified 
+file must/will contains X.509 CRL in DER binary encoding.
+.TP
+.I "-ctl"
+Add, Delete or Put certificate trust lists (CRL). UNSUPPORTED.
+.SH OPTIONS
+.TP
+.I "-v", "-verbose"
+More details displayed on the console.
+.TP
+.I "-help", "-h", "-?", "/?"
+Display help about this tool.
+.SH AUTHOR
+Written by Sebastien Pouliot
+.SH COPYRIGHT
+Copyright (C) 2004 Novell.
+.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), setreg(1)

+ 2 - 0
man/man.xml

@@ -18,4 +18,6 @@
 <manpage name="wsdl" page="wsdl.1" />
 <manpage name="disco" page="disco.1" />
 <manpage name="soapsuds" page="soapsuds.1" />
+<manpage name="setreg" page="setreg.1" />
+<manpage name="certmgr" page="certmgr.1" />
 </manpages>

+ 38 - 0
man/setreg.1

@@ -0,0 +1,38 @@
+.\" 
+.\" setreg manual page.
+.\" Copyright 2004 Novell
+.\" Author:
+.\"   Sebastien Pouliot <[email protected]>
+.\"
+.TH Mono "setreg"
+.SH NAME
+setreg \- Change settings for public key cryptography
+.SH SYNOPSIS
+.PP
+.B setreg [options] [feature] [true|false]
+.SH DESCRIPTION
+Allow to configure some optional settings for public key cryptography 
+parameters used in Mono.
+.SH OPTIONS
+.TP
+.I "-q"
+Limited display on console.
+.TP
+.I "-help", "-h", "-?", "/?"
+Display help about this tool.
+.SH FEATURES
+.TP
+.I "1"
+Trust the test root certificates (both Micrsoft and Mono). Depending on the 
+value this will add (TRUE) or remove (FALSE) the two self-signed certificates
+from the current user Trust store (~/.mono/certs/Trust/).
+.SH AUTHOR
+Written by Sebastien Pouliot
+.SH COPYRIGHT
+Copyright (C) 2004 Novell.
+.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 chktrust(1), certmgr(1), makecert(1)