aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2006-07-10 22:49:08 +0000
committerDr. Stephen Henson <steve@openssl.org>2006-07-10 22:49:08 +0000
commit105f6a6323cd1a9ac7fab68d575bf0382324a3bc (patch)
treec5398e51fe4af3eff573197b9cdeef69fa6bf773 /apps
parent8845701719724cf12f062adaeb1c39555d61fd6e (diff)
downloadopenssl-105f6a6323cd1a9ac7fab68d575bf0382324a3bc.zip
openssl-105f6a6323cd1a9ac7fab68d575bf0382324a3bc.tar.gz
openssl-105f6a6323cd1a9ac7fab68d575bf0382324a3bc.tar.bz2
Update some usage messages.
Diffstat (limited to 'apps')
-rw-r--r--apps/genpkey.c21
-rw-r--r--apps/pkeyparam.c2
2 files changed, 16 insertions, 7 deletions
diff --git a/apps/genpkey.c b/apps/genpkey.c
index 70e2e31..96801c7 100644
--- a/apps/genpkey.c
+++ b/apps/genpkey.c
@@ -198,15 +198,22 @@ int MAIN(int argc, char **argv)
if (badarg)
{
bad:
- BIO_printf(bio_err, "Usage genpkey [options]\n");
- BIO_printf(bio_err, "where options are\n");
- BIO_printf(bio_err, "-paramfile file parameter file\n");
- BIO_printf(bio_err, "-pass arg output file pass phrase source\n");
- BIO_printf(bio_err, "-outform X output format (DER or PEM)\n");
- BIO_printf(bio_err, "-out file output file\n");
+ BIO_printf(bio_err, "Usage: genpkey [options]\n");
+ BIO_printf(bio_err, "where options may be\n");
+ BIO_printf(bio_err, "-out file output file\n");
+ BIO_printf(bio_err, "-outform X output format (DER or PEM)\n");
+ BIO_printf(bio_err, "-pass arg output file pass phrase source\n");
+ BIO_printf(bio_err, "-<cipher> use cipher <cipher> to encrypt the key\n");
#ifndef OPENSSL_NO_ENGINE
- BIO_printf(bio_err, "-engine e use engine e, possibly a hardware device.\n");
+ BIO_printf(bio_err, "-engine e use engine e, possibly a hardware device.\n");
#endif
+ BIO_printf(bio_err, "-paramfile file parameters file\n");
+ BIO_printf(bio_err, "-algorithm alg the public key algorithm\n");
+ BIO_printf(bio_err, "-pkeyopt opt:value set the public key algorithm option <opt>\n"
+ " to value <value>\n");
+ BIO_printf(bio_err, "-genparam generate parameters, not key\n");
+ BIO_printf(bio_err, "-text print the in text\n");
+ BIO_printf(bio_err, "NB: options order may be important! See the manual page.\n");
goto end;
}
diff --git a/apps/pkeyparam.c b/apps/pkeyparam.c
index 15a8a2b..8435e5e 100644
--- a/apps/pkeyparam.c
+++ b/apps/pkeyparam.c
@@ -130,6 +130,8 @@ int MAIN(int argc, char **argv)
BIO_printf(bio_err, "where options are\n");
BIO_printf(bio_err, "-in file input file\n");
BIO_printf(bio_err, "-out file output file\n");
+ BIO_printf(bio_err, "-text print parameters as text\n");
+ BIO_printf(bio_err, "-noout don't output encoded parameters\n");
#ifndef OPENSSL_NO_ENGINE
BIO_printf(bio_err, "-engine e use engine e, possibly a hardware device.\n");
#endif