Rename pkcs10-create to request-create

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@16981 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-04-03 07:55:13 +00:00
parent 66fce528ed
commit b630b37558

View File

@@ -234,21 +234,41 @@ command = {
help = "Fetch OCSP responses for the following certs" help = "Fetch OCSP responses for the following certs"
} }
command = { command = {
name = "pkcs10-create" name = "request-create"
option = { option = {
long = "subject" long = "subject"
type = "string" type = "string"
help = "Subject DN" 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 = { option = {
long = "verbose" long = "verbose"
type = "flag" type = "flag"
help = "verbose status" help = "verbose status"
} }
min_args="2" min_args="1"
max_args="2" max_args="1"
argument="keyfile output-file" argument="output-file"
help = "Create a PKCS10 request" help = "Create a CRMF or PKCS10 request"
} }
command = { command = {
name = "pkcs10-print" name = "pkcs10-print"