From b630b37558405d1a6c4cd59c32ed78aba34c8e0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Mon, 3 Apr 2006 07:55:13 +0000 Subject: [PATCH] Rename pkcs10-create to request-create git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@16981 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/hx509/hxtool-commands.in | 30 +++++++++++++++++++++++++----- 1 file changed, 25 insertions(+), 5 deletions(-) diff --git a/lib/hx509/hxtool-commands.in b/lib/hx509/hxtool-commands.in index 5d7e8fc9b..c43d82402 100644 --- a/lib/hx509/hxtool-commands.in +++ b/lib/hx509/hxtool-commands.in @@ -234,21 +234,41 @@ command = { help = "Fetch OCSP responses for the following certs" } command = { - name = "pkcs10-create" + name = "request-create" option = { long = "subject" type = "string" help = "Subject DN" } + option = { + long = "email" + type = "strings" + help = "Email address in SubjectAltName" + } + option = { + long = "dnsname" + type = "strings" + help = "Hostname or domainname in SubjectAltName" + } + option = { + long = "type" + type = "string" + help = "Type of request CRMF or PKCS10, defaults to PKCS10" + } + option = { + long = "key" + type = "string" + help = "Key-pair" + } option = { long = "verbose" type = "flag" help = "verbose status" } - min_args="2" - max_args="2" - argument="keyfile output-file" - help = "Create a PKCS10 request" + min_args="1" + max_args="1" + argument="output-file" + help = "Create a CRMF or PKCS10 request" } command = { name = "pkcs10-print"