Fix incorrect usage messages in some commands.
authorDr. Stephen Henson <steve@openssl.org>
Wed, 6 Oct 1999 22:59:21 +0000 (22:59 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Wed, 6 Oct 1999 22:59:21 +0000 (22:59 +0000)
apps/dsa.c
apps/dsaparam.c

index 6117fc4b2d9aedba5ccfccc07df5c3976ca70048..229f2ea24664661c4196420fff73ef396743185b 100644 (file)
@@ -156,8 +156,8 @@ int MAIN(int argc, char **argv)
 bad:
                BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog);
                BIO_printf(bio_err,"where options are\n");
-               BIO_printf(bio_err," -inform arg   input format - one of DER NET PEM\n");
-               BIO_printf(bio_err," -outform arg  output format - one of DER NET PEM\n");
+               BIO_printf(bio_err," -inform arg   input format - DER or PEM\n");
+               BIO_printf(bio_err," -outform arg  output format - DER or PEM\n");
                BIO_printf(bio_err," -in arg       input file\n");
                BIO_printf(bio_err," -out arg      output file\n");
                BIO_printf(bio_err," -des          encrypt PEM output with cbc des\n");
index fb8d47110876d17df933b378b6ee6a3c20dd40c3..9316fb2c8af49f93e64ce2b0f4e0f500841aaf61 100644 (file)
@@ -164,11 +164,11 @@ int MAIN(int argc, char **argv)
 bad:
                BIO_printf(bio_err,"%s [options] [bits] <infile >outfile\n",prog);
                BIO_printf(bio_err,"where options are\n");
-               BIO_printf(bio_err," -inform arg   input format - one of DER TXT PEM\n");
-               BIO_printf(bio_err," -outform arg  output format - one of DER TXT PEM\n");
+               BIO_printf(bio_err," -inform arg   input format - DER or PEM\n");
+               BIO_printf(bio_err," -outform arg  output format - DER or PEM\n");
                BIO_printf(bio_err," -in arg       input file\n");
                BIO_printf(bio_err," -out arg      output file\n");
-               BIO_printf(bio_err," -text         check the DSA parameters\n");
+               BIO_printf(bio_err," -text         print the key in text\n");
                BIO_printf(bio_err," -C            Output C code\n");
                BIO_printf(bio_err," -noout        no output\n");
                BIO_printf(bio_err," -rand         files to use for random number input\n");