Close a whole bunch of documentation-related tickets:
[openssl.git] / doc / apps / ecparam.pod
index 2523a9b103eb2c79363450a83002f268a781d979..88e9d1e83d02b4ea3424e3f622256166a6a841f3 100644 (file)
@@ -16,7 +16,7 @@ B<openssl ecparam>
 [B<-C>]
 [B<-check>]
 [B<-name arg>]
-[B<-list_curve>]
+[B<-list_curves>]
 [B<-conv_form arg>]
 [B<-param_enc arg>]
 [B<-no_seed>]
@@ -121,7 +121,7 @@ all others.
 
 =item B<-engine id>
 
-specifying an engine (by it's unique B<id> string) will cause B<req>
+specifying an engine (by its unique B<id> string) will cause B<ecparam>
 to attempt to obtain a functional reference to the specified engine,
 thus initialising it if needed. The engine will then be set as the default
 for all available algorithms.
@@ -142,27 +142,27 @@ B<ecparam> can only create EC parameters from known (named) curves.
 
 To create EC parameters with the group 'prime192v1':
 
-  openssl ec -out ec_param.pem -name prime192v1
+  openssl ecparam -out ec_param.pem -name prime192v1
 
 To create EC parameters with explicit parameters:
 
-  openssl ec -out ec_param.pem -name prime192v1 -param_enc explicit
+  openssl ecparam -out ec_param.pem -name prime192v1 -param_enc explicit
 
 To validate given EC parameters:
 
-  openssl ec -in ec_param.pem -check
+  openssl ecparam -in ec_param.pem -check
 
 To create EC parameters and a private key:
 
-  openssl ec -out ec_key.pem -name prime192v1 -genkey
+  openssl ecparam -out ec_key.pem -name prime192v1 -genkey
 
 To change the point encoding to 'compressed':
 
-  openssl ec -in ec_in.pem -out ec_out.pem -conv_form compressed
+  openssl ecparam -in ec_in.pem -out ec_out.pem -conv_form compressed
 
 To print out the EC parameters to standard output:
 
-  openssl ec -in ec_param.pem -noout -text
+  openssl ecparam -in ec_param.pem -noout -text
 
 =head1 SEE ALSO