EC_GROUP_new.pod 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. =pod
  2. =head1 NAME
  3. EC_GROUP_get_ecparameters,
  4. EC_GROUP_get_ecpkparameters,
  5. EC_GROUP_new,
  6. EC_GROUP_new_from_ecparameters,
  7. EC_GROUP_new_from_ecpkparameters,
  8. EC_GROUP_free,
  9. EC_GROUP_clear_free,
  10. EC_GROUP_new_curve_GFp,
  11. EC_GROUP_new_curve_GF2m,
  12. EC_GROUP_new_by_curve_name,
  13. EC_GROUP_set_curve,
  14. EC_GROUP_get_curve,
  15. EC_GROUP_set_curve_GFp,
  16. EC_GROUP_get_curve_GFp,
  17. EC_GROUP_set_curve_GF2m,
  18. EC_GROUP_get_curve_GF2m,
  19. EC_get_builtin_curves - Functions for creating and destroying EC_GROUP
  20. objects
  21. =head1 SYNOPSIS
  22. #include <openssl/ec.h>
  23. EC_GROUP *EC_GROUP_new(const EC_METHOD *meth);
  24. EC_GROUP *EC_GROUP_new_from_ecparameters(const ECPARAMETERS *params)
  25. EC_GROUP *EC_GROUP_new_from_ecpkparameters(const ECPKPARAMETERS *params)
  26. void EC_GROUP_free(EC_GROUP *group);
  27. void EC_GROUP_clear_free(EC_GROUP *group);
  28. EC_GROUP *EC_GROUP_new_curve_GFp(const BIGNUM *p, const BIGNUM *a,
  29. const BIGNUM *b, BN_CTX *ctx);
  30. EC_GROUP *EC_GROUP_new_curve_GF2m(const BIGNUM *p, const BIGNUM *a,
  31. const BIGNUM *b, BN_CTX *ctx);
  32. EC_GROUP *EC_GROUP_new_by_curve_name(int nid);
  33. int EC_GROUP_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a,
  34. const BIGNUM *b, BN_CTX *ctx);
  35. int EC_GROUP_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b,
  36. BN_CTX *ctx);
  37. int EC_GROUP_set_curve_GFp(EC_GROUP *group, const BIGNUM *p,
  38. const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
  39. int EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p,
  40. BIGNUM *a, BIGNUM *b, BN_CTX *ctx);
  41. int EC_GROUP_set_curve_GF2m(EC_GROUP *group, const BIGNUM *p,
  42. const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
  43. int EC_GROUP_get_curve_GF2m(const EC_GROUP *group, BIGNUM *p,
  44. BIGNUM *a, BIGNUM *b, BN_CTX *ctx);
  45. ECPARAMETERS *EC_GROUP_get_ecparameters(const EC_GROUP *group, ECPARAMETERS *params)
  46. ECPKPARAMETERS *EC_GROUP_get_ecpkparameters(const EC_GROUP *group, ECPKPARAMETERS *params)
  47. size_t EC_get_builtin_curves(EC_builtin_curve *r, size_t nitems);
  48. =head1 DESCRIPTION
  49. Within the library there are two forms of elliptic curve that are of interest. The first form is those defined over the
  50. prime field Fp. The elements of Fp are the integers 0 to p-1, where p is a prime number. This gives us a revised
  51. elliptic curve equation as follows:
  52. y^2 mod p = x^3 +ax + b mod p
  53. The second form is those defined over a binary field F2^m where the elements of the field are integers of length at
  54. most m bits. For this form the elliptic curve equation is modified to:
  55. y^2 + xy = x^3 + ax^2 + b (where b != 0)
  56. Operations in a binary field are performed relative to an B<irreducible polynomial>. All such curves with OpenSSL
  57. use a trinomial or a pentanomial for this parameter.
  58. A new curve can be constructed by calling EC_GROUP_new, using the implementation provided by B<meth> (see
  59. L<EC_GFp_simple_method(3)>). It is then necessary to call EC_GROUP_set_curve() to set the curve parameters.
  60. EC_GROUP_new_from_ecparameters() will create a group from the
  61. specified B<params> and
  62. EC_GROUP_new_from_ecpkparameters() will create a group from the specific PK B<params>.
  63. EC_GROUP_set_curve() sets the curve parameters B<p>, B<a> and B<b>. For a curve over Fp B<b>
  64. is the prime for the field. For a curve over F2^m B<p> represents the irreducible polynomial - each bit
  65. represents a term in the polynomial. Therefore there will either be three or five bits set dependent on whether
  66. the polynomial is a trinomial or a pentanomial.
  67. EC_group_get_curve() obtains the previously set curve parameters.
  68. EC_GROUP_set_curve_GFp() and EC_GROUP_set_curve_GF2m() are synonyms for EC_GROUP_set_curve(). They are defined for
  69. backwards compatibility only and should not be used.
  70. EC_GROUP_get_curve_GFp() and EC_GROUP_get_curve_GF2m() are synonyms for EC_GROUP_get_curve(). They are defined for
  71. backwards compatibility only and should not be used.
  72. The functions EC_GROUP_new_curve_GFp and EC_GROUP_new_curve_GF2m are shortcuts for calling EC_GROUP_new and then the
  73. EC_GROUP_set_curve function. An appropriate default implementation method will be used.
  74. Whilst the library can be used to create any curve using the functions described above, there are also a number of
  75. predefined curves that are available. In order to obtain a list of all of the predefined curves, call the function
  76. EC_get_builtin_curves. The parameter B<r> should be an array of EC_builtin_curve structures of size B<nitems>. The function
  77. will populate the B<r> array with information about the builtin curves. If B<nitems> is less than the total number of
  78. curves available, then the first B<nitems> curves will be returned. Otherwise the total number of curves will be
  79. provided. The return value is the total number of curves available (whether that number has been populated in B<r> or
  80. not). Passing a NULL B<r>, or setting B<nitems> to 0 will do nothing other than return the total number of curves available.
  81. The EC_builtin_curve structure is defined as follows:
  82. typedef struct {
  83. int nid;
  84. const char *comment;
  85. } EC_builtin_curve;
  86. Each EC_builtin_curve item has a unique integer id (B<nid>), and a human readable comment string describing the curve.
  87. In order to construct a builtin curve use the function EC_GROUP_new_by_curve_name and provide the B<nid> of the curve to
  88. be constructed.
  89. EC_GROUP_free frees the memory associated with the EC_GROUP.
  90. If B<group> is NULL nothing is done.
  91. EC_GROUP_clear_free destroys any sensitive data held within the EC_GROUP and then frees its memory.
  92. If B<group> is NULL nothing is done.
  93. =head1 RETURN VALUES
  94. All EC_GROUP_new* functions return a pointer to the newly constructed group, or NULL on error.
  95. EC_get_builtin_curves returns the number of builtin curves that are available.
  96. EC_GROUP_set_curve_GFp, EC_GROUP_get_curve_GFp, EC_GROUP_set_curve_GF2m, EC_GROUP_get_curve_GF2m return 1 on success or 0 on error.
  97. =head1 SEE ALSO
  98. L<crypto(7)>, L<EC_GROUP_copy(3)>,
  99. L<EC_POINT_new(3)>, L<EC_POINT_add(3)>, L<EC_KEY_new(3)>,
  100. L<EC_GFp_simple_method(3)>, L<d2i_ECPKParameters(3)>
  101. =head1 COPYRIGHT
  102. Copyright 2013-2018 The OpenSSL Project Authors. All Rights Reserved.
  103. Licensed under the Apache License 2.0 (the "License"). You may not use
  104. this file except in compliance with the License. You can obtain a copy
  105. in the file LICENSE in the source distribution or at
  106. L<https://www.openssl.org/source/license.html>.
  107. =cut