openssl-ec.pod.in 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. =pod
  2. =begin comment
  3. {- join("\n", @autowarntext) -}
  4. =end comment
  5. =head1 NAME
  6. openssl-ec - EC key processing
  7. =head1 SYNOPSIS
  8. B<openssl> B<ec>
  9. [B<-help>]
  10. [B<-inform> B<DER>|B<PEM>]
  11. [B<-outform> B<DER>|B<PEM>]
  12. [B<-in> I<filename>]
  13. [B<-passin> I<arg>]
  14. [B<-out> I<filename>]
  15. [B<-passout> I<arg>]
  16. [B<-des>]
  17. [B<-des3>]
  18. [B<-idea>]
  19. [B<-text>]
  20. [B<-noout>]
  21. [B<-param_out>]
  22. [B<-pubin>]
  23. [B<-pubout>]
  24. [B<-conv_form> I<arg>]
  25. [B<-param_enc> I<arg>]
  26. [B<-no_public>]
  27. [B<-check>]
  28. {- $OpenSSL::safe::opt_engine_synopsis -}
  29. =for openssl ifdef engine
  30. =head1 DESCRIPTION
  31. The L<openssl-ec(1)> command processes EC keys. They can be converted between
  32. various forms and their components printed out. B<Note> OpenSSL uses the
  33. private key format specified in 'SEC 1: Elliptic Curve Cryptography'
  34. (http://www.secg.org/). To convert an OpenSSL EC private key into the
  35. PKCS#8 private key format use the L<openssl-pkcs8(1)> command.
  36. =head1 OPTIONS
  37. =over 4
  38. =item B<-help>
  39. Print out a usage message.
  40. =item B<-inform> B<DER>|B<PEM>, B<-outform> B<DER>|B<PEM>
  41. The input and formats; the default is B<PEM>.
  42. See L<openssl(1)/Format Options> for details.
  43. Private keys are an SEC1 private key or PKCS#8 format.
  44. Public keys are a B<SubjectPublicKeyInfo> as specified in IETF RFC 3280.
  45. =item B<-in> I<filename>
  46. This specifies the input filename to read a key from or standard input if this
  47. option is not specified. If the key is encrypted a pass phrase will be
  48. prompted for.
  49. =item B<-out> I<filename>
  50. This specifies the output filename to write a key to or standard output by
  51. is not specified. If any encryption options are set then a pass phrase will be
  52. prompted for. The output filename should B<not> be the same as the input
  53. filename.
  54. =item B<-passin> I<arg>, B<-passout> I<arg>
  55. The password source for the input and output file.
  56. For more information about the format of B<arg>
  57. see L<openssl(1)/Pass Phrase Options>.
  58. =item B<-des>|B<-des3>|B<-idea>
  59. These options encrypt the private key with the DES, triple DES, IDEA or
  60. any other cipher supported by OpenSSL before outputting it. A pass phrase is
  61. prompted for.
  62. If none of these options is specified the key is written in plain text. This
  63. means that using this command to read in an encrypted key with no
  64. encryption option can be used to remove the pass phrase from a key, or by
  65. setting the encryption options it can be use to add or change the pass phrase.
  66. These options can only be used with PEM format output files.
  67. =item B<-text>
  68. Prints out the public, private key components and parameters.
  69. =item B<-noout>
  70. This option prevents output of the encoded version of the key.
  71. =item B<-pubin>
  72. By default, a private key is read from the input file. With this option a
  73. public key is read instead.
  74. =item B<-pubout>
  75. By default a private key is output. With this option a public
  76. key will be output instead. This option is automatically set if the input is
  77. a public key.
  78. =item B<-conv_form> I<arg>
  79. This specifies how the points on the elliptic curve are converted
  80. into octet strings. Possible values are: B<compressed> (the default
  81. value), B<uncompressed> and B<hybrid>. For more information regarding
  82. the point conversion forms please read the X9.62 standard.
  83. B<Note> Due to patent issues the B<compressed> option is disabled
  84. by default for binary curves and can be enabled by defining
  85. the preprocessor macro B<OPENSSL_EC_BIN_PT_COMP> at compile time.
  86. =item B<-param_enc> I<arg>
  87. This specifies how the elliptic curve parameters are encoded.
  88. Possible value are: B<named_curve>, i.e. the ec parameters are
  89. specified by an OID, or B<explicit> where the ec parameters are
  90. explicitly given (see RFC 3279 for the definition of the
  91. EC parameters structures). The default value is B<named_curve>.
  92. B<Note> the B<implicitlyCA> alternative, as specified in RFC 3279,
  93. is currently not implemented in OpenSSL.
  94. =item B<-no_public>
  95. This option omits the public key components from the private key output.
  96. =item B<-check>
  97. This option checks the consistency of an EC private or public key.
  98. {- $OpenSSL::safe::opt_engine_item -}
  99. =back
  100. =head1 EXAMPLES
  101. To encrypt a private key using triple DES:
  102. openssl ec -in key.pem -des3 -out keyout.pem
  103. To convert a private key from PEM to DER format:
  104. openssl ec -in key.pem -outform DER -out keyout.der
  105. To print out the components of a private key to standard output:
  106. openssl ec -in key.pem -text -noout
  107. To just output the public part of a private key:
  108. openssl ec -in key.pem -pubout -out pubkey.pem
  109. To change the parameters encoding to B<explicit>:
  110. openssl ec -in key.pem -param_enc explicit -out keyout.pem
  111. To change the point conversion form to B<compressed>:
  112. openssl ec -in key.pem -conv_form compressed -out keyout.pem
  113. =head1 SEE ALSO
  114. L<openssl(1)>,
  115. L<openssl-ecparam(1)>,
  116. L<openssl-dsa(1)>,
  117. L<openssl-rsa(1)>
  118. =head1 COPYRIGHT
  119. Copyright 2003-2019 The OpenSSL Project Authors. All Rights Reserved.
  120. Licensed under the Apache License 2.0 (the "License"). You may not use
  121. this file except in compliance with the License. You can obtain a copy
  122. in the file LICENSE in the source distribution or at
  123. L<https://www.openssl.org/source/license.html>.
  124. =cut