change 'usage' formatting

This commit is contained in:
Bodo Möller 2002-08-27 10:38:09 +00:00
parent 34f1f2a81c
commit e2aeb8174b

View File

@ -102,27 +102,24 @@
* -outform arg - output format - default PEM
* -in arg - input file - default stdin
* -out arg - output file - default stdout
* -noout
* -text
* -noout - do not print the ec parameter
* -text - print the ec parameters in text form
* -check - validate the ec parameters
* -C
* -noout
* -name file - use the ecparameters with 'short name' name
* -list_curves - prints a list of all currently available curve
* 'short names' and exits
* -conv_form - specifies the point conversion form
* possible values: compressed
* -C - print a 'C' function creating the parameters
* -name arg - use the ec parameters with 'short name' name
* -list_curves - prints a list of all currently available curve 'short names'
* -conv_form arg - specifies the point conversion form
* - possible values: compressed
* uncompressed (default)
* hybrid
* -param_enc - specifies the way the ec parameters are encoded
* -param_enc arg - specifies the way the ec parameters are encoded
* in the asn1 der encoding
* possilbe values: named_curve (default)
* possible values: named_curve (default)
* explicit
* -no_seed - if 'explicit' parameters are choosen do not
* use the seed
* -genkey - generates a ec private key
* -rand file
* -engine e - use engine e, possible a hardware device
* -no_seed - if 'explicit' parameters are choosen do not use the seed
* -genkey - generate ec key
* -rand file - files to use for random number input
* -engine e - use engine e, possibly a hardware device
*/
@ -283,8 +280,7 @@ bad:
BIO_printf(bio_err, " -name arg use the "
"ec parameters with 'short name' name\n");
BIO_printf(bio_err, " -list_curves prints a list of "
"all currently available curve\n");
BIO_printf(bio_err, " 'short names'\n");
"all currently available curve 'short names'\n");
BIO_printf(bio_err, " -conv_form arg specifies the "
"point conversion form \n");
BIO_printf(bio_err, " possible values:"
@ -297,19 +293,19 @@ bad:
" the ec parameters are encoded\n");
BIO_printf(bio_err, " in the asn1 der "
"encoding\n");
BIO_printf(bio_err, " possilbe values:"
BIO_printf(bio_err, " possible values:"
" named_curve (default)\n");
BIO_printf(bio_err, " "
" explicit\n");
BIO_printf(bio_err, " -no_seed if 'explicit'"
" parameters are choosen do not\n");
BIO_printf(bio_err, " use the seed\n");
" parameters are choosen do not"
" use the seed\n");
BIO_printf(bio_err, " -genkey generate ec"
" key\n");
BIO_printf(bio_err, " -rand file files to use for"
" random number input\n");
BIO_printf(bio_err, " -engine e use engine e, "
"possible a hardware device\n");
"possibly a hardware device\n");
goto end;
}