2
0

EVP_PKEY-EC.pod 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. =pod
  2. =head1 NAME
  3. EVP_PKEY-EC,
  4. EVP_KEYMGMT-EC
  5. - EVP_PKEY EC keytype and algorithm support
  6. =head1 DESCRIPTION
  7. The B<EC> keytype is implemented in OpenSSL's default provider.
  8. =head2 Common EC parameters
  9. The normal way of specifying domain parameters for an EC curve is via the
  10. curve name "group". For curves with no curve name, explicit parameters can be
  11. used that specify "field-type", "p", "a", "b", "generator" and "order".
  12. Explicit parameters are supported for backwards compability reasons, but they
  13. are not compliant with multiple standards (including RFC5915) which only allow
  14. named curves.
  15. The following KeyGen/Gettable/Import/Export types are available for the
  16. built-in EC algorithm:
  17. =over 4
  18. =item "group" (B<OSSL_PKEY_PARAM_GROUP_NAME>) <UTF8 string>
  19. The curve name.
  20. =item "field-type" (B<OSSL_PKEY_PARAM_EC_FIELD_TYPE>) <UTF8 string>
  21. The value should be either "prime-field" or "characteristic-two-field",
  22. which correspond to prime field Fp and binary field F2^m.
  23. =item "p" (B<OSSL_PKEY_PARAM_EC_P>) <unsigned integer>
  24. For a curve over Fp I<p> is the prime for the field. For a curve over F2^m I<p>
  25. represents the irreducible polynomial - each bit represents a term in the
  26. polynomial. Therefore, there will either be three or five bits set dependent on
  27. whether the polynomial is a trinomial or a pentanomial.
  28. =item "a" (B<OSSL_PKEY_PARAM_EC_A>) <unsigned integer>
  29. =item "b" (B<OSSL_PKEY_PARAM_EC_B>) <unsigned integer>
  30. =item "seed" (B<OSSL_PKEY_PARAM_EC_SEED>) <octet string>
  31. I<a> and I<b> represents the coefficients of the curve
  32. For Fp: y^2 mod p = x^3 +ax + b mod p OR
  33. For F2^m: y^2 + xy = x^3 + ax^2 + b
  34. I<seed> is an optional value that is for information purposes only.
  35. It represents the random number seed used to generate the coefficient I<b> from a
  36. random number.
  37. =item "generator" (B<OSSL_PKEY_PARAM_EC_GENERATOR>) <octet string>
  38. =item "order" (B<OSSL_PKEY_PARAM_EC_ORDER>) <unsigned integer>
  39. =item "cofactor" (B<OSSL_PKEY_PARAM_EC_COFACTOR>) <unsigned integer>
  40. The I<generator> is a well defined point on the curve chosen for cryptographic
  41. operations. The encoding conforms with Sec. 2.3.3 of the SECG SEC 1 ("Elliptic Curve
  42. Cryptography") standard. See EC_POINT_oct2point().
  43. Integers used for point multiplications will be between 0 and
  44. I<order> - 1.
  45. I<cofactor> is an optional value.
  46. I<order> multiplied by the I<cofactor> gives the number of points on the curve.
  47. =item "decoded-from-explicit" (B<OSSL_PKEY_PARAM_EC_DECODED_FROM_EXPLICIT_PARAMS>) <integer>
  48. Gets a flag indicating wether the key or parameters were decoded from explicit
  49. curve parameters. Set to 1 if so or 0 if a named curve was used.
  50. =item "use-cofactor-flag" (B<OSSL_PKEY_PARAM_USE_COFACTOR_ECDH>) <integer>
  51. Enable Cofactor DH (ECC CDH) if this value is 1, otherwise it uses normal EC DH
  52. if the value is zero. The cofactor variant multiplies the shared secret by the
  53. EC curve's cofactor (note for some curves the cofactor is 1).
  54. =item "encoding" (B<OSSL_PKEY_PARAM_EC_ENCODING>) <UTF8 string>
  55. Set the format used for serializing the EC group parameters.
  56. Valid values are "explicit" or "named_curve". The default value is "named_curve".
  57. =item "point-format" (B<OSSL_PKEY_PARAM_EC_POINT_CONVERSION_FORMAT>) <UTF8 string>
  58. Sets or gets the point_conversion_form for the I<key>. For a description of
  59. point_conversion_forms please see L<EC_POINT_new(3)>. Valid values are
  60. "uncompressed" or "compressed". The default value is "uncompressed".
  61. =item "group-check" (B<OSSL_PKEY_PARAM_EC_GROUP_CHECK_TYPE>) <UTF8 string>
  62. Sets or Gets the type of group check done when EVP_PKEY_param_check() is called.
  63. Valid values are "default", "named" and "named-nist".
  64. The "named" type checks that the domain parameters match the inbuilt curve parameters,
  65. "named-nist" is similiar but also checks that the named curve is a nist curve.
  66. The "default" type does domain parameter validation for the OpenSSL default provider,
  67. but is equivalent to "named-nist" for the OpenSSL fips provider.
  68. =item "include-public" (B<OSSL_PKEY_PARAM_EC_INCLUDE_PUBLIC>) <integer>
  69. Setting this value to 0 indicates that the public key should not be included when
  70. encoding the private key. The default value of 1 will include the public key.
  71. See also L<EVP_KEYEXCH-ECDH(7)> for the related
  72. B<OSSL_EXCHANGE_PARAM_EC_ECDH_COFACTOR_MODE> parameter that can be set on a
  73. per-operation basis.
  74. =item "pub" (B<OSSL_PKEY_PARAM_PUB_KEY>) <octet string>
  75. The public key value in EC point format.
  76. =item "priv" (B<OSSL_PKEY_PARAM_PRIV_KEY>) <unsigned integer>
  77. The private key value.
  78. =item "encoded-pub-key" (B<OSSL_PKEY_PARAM_ENCODED_PUBLIC_KEY>) <octet string>
  79. Used for getting and setting the encoding of an EC public key. The public key
  80. is expected to be a point conforming to Sec. 2.3.4 of the SECG SEC 1 ("Elliptic
  81. Curve Cryptography") standard.
  82. =item "qx" (B<OSSL_PKEY_PARAM_EC_PUB_X>) <unsigned integer>
  83. Used for getting the EC public key X component.
  84. =item "qy" (B<OSSL_PKEY_PARAM_EC_PUB_Y>) <unsigned integer>
  85. Used for getting the EC public key Y component.
  86. =item (B<OSSL_PKEY_PARAM_DEFAULT_DIGEST>) <UTF8 string>
  87. Getter that returns the default digest name.
  88. (Currently returns "SHA256" as of OpenSSL 3.0).
  89. =back
  90. The following Gettable types are also available for the built-in EC algorithm:
  91. =over 4
  92. =item "basis-type" (B<OSSL_PKEY_PARAM_EC_CHAR2_TYPE>) <UTF8 string>
  93. Supports the values "tpBasis" for a trinomial or "ppBasis" for a pentanomial.
  94. This field is only used for a binary field F2^m.
  95. =item "m" (B<OSSL_PKEY_PARAM_EC_CHAR2_M>) <integer>
  96. =item "tp" (B<OSSL_PKEY_PARAM_EC_CHAR2_TP_BASIS>) <integer>
  97. =item "k1" (B<OSSL_PKEY_PARAM_EC_CHAR2_PP_K1>) <integer>
  98. =item "k2" (B<OSSL_PKEY_PARAM_EC_CHAR2_PP_K2>) <integer>
  99. =item "k3" (B<OSSL_PKEY_PARAM_EC_CHAR2_PP_K3>) <integer>
  100. These fields are only used for a binary field F2^m.
  101. I<m> is the degree of the binary field.
  102. I<tp> is the middle bit of a trinomial so its value must be in the
  103. range m > tp > 0.
  104. I<k1>, I<k2> and I<k3> are used to get the middle bits of a pentanomial such
  105. that m > k3 > k2 > k1 > 0
  106. =back
  107. =head1 EXAMPLES
  108. An B<EVP_PKEY> context can be obtained by calling:
  109. EVP_PKEY_CTX *pctx =
  110. EVP_PKEY_CTX_new_from_name(NULL, "EC", NULL);
  111. An B<EVP_PKEY> ECDSA or ECDH key can be generated with a "P-256" named group by
  112. calling:
  113. pkey = EVP_EC_gen("P-256");
  114. or like this:
  115. EVP_PKEY *key = NULL;
  116. OSSL_PARAM params[2];
  117. EVP_PKEY_CTX *gctx =
  118. EVP_PKEY_CTX_new_from_name(NULL, "EC", NULL);
  119. EVP_PKEY_keygen_init(gctx);
  120. params[0] = OSSL_PARAM_construct_utf8_string(OSSL_PKEY_PARAM_GROUP_NAME,
  121. "P-256", 0);
  122. params[1] = OSSL_PARAM_construct_end();
  123. EVP_PKEY_CTX_set_params(gctx, params);
  124. EVP_PKEY_generate(gctx, &key);
  125. EVP_PKEY_print_private(bio_out, key, 0, NULL);
  126. ...
  127. EVP_PKEY_free(key);
  128. EVP_PKEY_CTX_free(gctx);
  129. An B<EVP_PKEY> EC CDH (Cofactor Diffie-Hellman) key can be generated with a
  130. "K-571" named group by calling:
  131. int use_cdh = 1;
  132. EVP_PKEY *key = NULL;
  133. OSSL_PARAM params[3];
  134. EVP_PKEY_CTX *gctx =
  135. EVP_PKEY_CTX_new_from_name(NULL, "EC", NULL);
  136. EVP_PKEY_keygen_init(gctx);
  137. params[0] = OSSL_PARAM_construct_utf8_string(OSSL_PKEY_PARAM_GROUP_NAME,
  138. "K-571", 0);
  139. /*
  140. * This curve has a cofactor that is not 1 - so setting CDH mode changes
  141. * the behaviour. For many curves the cofactor is 1 - so setting this has
  142. * no effect.
  143. */
  144. params[1] = OSSL_PARAM_construct_int(OSSL_PKEY_PARAM_USE_COFACTOR_ECDH,
  145. &use_cdh);
  146. params[2] = OSSL_PARAM_construct_end();
  147. EVP_PKEY_CTX_set_params(gctx, params);
  148. EVP_PKEY_generate(gctx, &key);
  149. EVP_PKEY_print_private(bio_out, key, 0, NULL);
  150. ...
  151. EVP_PKEY_free(key);
  152. EVP_PKEY_CTX_free(gctx);
  153. =head1 SEE ALSO
  154. L<EVP_EC_gen(3)>,
  155. L<EVP_KEYMGMT(3)>,
  156. L<EVP_PKEY(3)>,
  157. L<provider-keymgmt(7)>,
  158. L<EVP_SIGNATURE-ECDSA(7)>,
  159. L<EVP_KEYEXCH-ECDH(7)>
  160. =head1 COPYRIGHT
  161. Copyright 2020-2021 The OpenSSL Project Authors. All Rights Reserved.
  162. Licensed under the Apache License 2.0 (the "License"). You may not use
  163. this file except in compliance with the License. You can obtain a copy
  164. in the file LICENSE in the source distribution or at
  165. L<https://www.openssl.org/source/license.html>.
  166. =cut