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
path: root/man
diff options
context:
space:
mode:
authorSebastien Pouliot <sebastien@ximian.com>2004-02-27 01:08:01 +0300
committerSebastien Pouliot <sebastien@ximian.com>2004-02-27 01:08:01 +0300
commitff868eb33cc3480a490308fbc7e21e2dac4349ee (patch)
treedd78525211ee4c1f04d1c0b8ec49ad3bacaa6d14 /man
parentd0174bee8d814624143574532abb9c4bbea64824 (diff)
2004-02-26 Sebastien Pouliot <sebastien@ximian.com>
* 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
Diffstat (limited to 'man')
-rw-r--r--man/Makefile.am3
-rwxr-xr-xman/certmgr.156
-rw-r--r--man/man.xml2
-rwxr-xr-xman/setreg.138
4 files changed, 98 insertions, 1 deletions
diff --git a/man/Makefile.am b/man/Makefile.am
index 2322bcb1114..95bf8043be3 100644
--- a/man/Makefile.am
+++ b/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)
diff --git a/man/certmgr.1 b/man/certmgr.1
new file mode 100755
index 00000000000..16e874797a7
--- /dev/null
+++ b/man/certmgr.1
@@ -0,0 +1,56 @@
+.\"
+.\" certmgr manual page.
+.\" Copyright 2004 Novell
+.\" Author:
+.\" Sebastien Pouliot <sebastien@ximian.com>
+.\"
+.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)
diff --git a/man/man.xml b/man/man.xml
index 8424f3ff959..61253d7fbbf 100644
--- a/man/man.xml
+++ b/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>
diff --git a/man/setreg.1 b/man/setreg.1
new file mode 100755
index 00000000000..0ead62ee83f
--- /dev/null
+++ b/man/setreg.1
@@ -0,0 +1,38 @@
+.\"
+.\" setreg manual page.
+.\" Copyright 2004 Novell
+.\" Author:
+.\" Sebastien Pouliot <sebastien@ximian.com>
+.\"
+.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)