EC_POINT_new.pod 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. =pod
  2. =head1 NAME
  3. EC_POINT_set_Jprojective_coordinates_GFp,
  4. EC_POINT_point2buf,
  5. EC_POINT_new,
  6. EC_POINT_free,
  7. EC_POINT_clear_free,
  8. EC_POINT_copy,
  9. EC_POINT_dup,
  10. EC_POINT_method_of,
  11. EC_POINT_set_to_infinity,
  12. EC_POINT_get_Jprojective_coordinates_GFp,
  13. EC_POINT_set_affine_coordinates,
  14. EC_POINT_get_affine_coordinates,
  15. EC_POINT_set_compressed_coordinates,
  16. EC_POINT_set_affine_coordinates_GFp,
  17. EC_POINT_get_affine_coordinates_GFp,
  18. EC_POINT_set_compressed_coordinates_GFp,
  19. EC_POINT_set_affine_coordinates_GF2m,
  20. EC_POINT_get_affine_coordinates_GF2m,
  21. EC_POINT_set_compressed_coordinates_GF2m,
  22. EC_POINT_point2oct,
  23. EC_POINT_oct2point,
  24. EC_POINT_point2bn,
  25. EC_POINT_bn2point,
  26. EC_POINT_point2hex,
  27. EC_POINT_hex2point
  28. - Functions for creating, destroying and manipulating EC_POINT objects
  29. =head1 SYNOPSIS
  30. #include <openssl/ec.h>
  31. EC_POINT *EC_POINT_new(const EC_GROUP *group);
  32. void EC_POINT_free(EC_POINT *point);
  33. void EC_POINT_clear_free(EC_POINT *point);
  34. int EC_POINT_copy(EC_POINT *dst, const EC_POINT *src);
  35. EC_POINT *EC_POINT_dup(const EC_POINT *src, const EC_GROUP *group);
  36. const EC_METHOD *EC_POINT_method_of(const EC_POINT *point);
  37. int EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point);
  38. int EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group,
  39. EC_POINT *p,
  40. const BIGNUM *x, const BIGNUM *y,
  41. const BIGNUM *z, BN_CTX *ctx);
  42. int EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group,
  43. const EC_POINT *p,
  44. BIGNUM *x, BIGNUM *y, BIGNUM *z,
  45. BN_CTX *ctx);
  46. int EC_POINT_set_affine_coordinates(const EC_GROUP *group, EC_POINT *p,
  47. const BIGNUM *x, const BIGNUM *y,
  48. BN_CTX *ctx);
  49. int EC_POINT_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *p,
  50. BIGNUM *x, BIGNUM *y, BN_CTX *ctx);
  51. int EC_POINT_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *p,
  52. const BIGNUM *x, int y_bit,
  53. BN_CTX *ctx);
  54. int EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *p,
  55. const BIGNUM *x, const BIGNUM *y,
  56. BN_CTX *ctx);
  57. int EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group,
  58. const EC_POINT *p,
  59. BIGNUM *x, BIGNUM *y, BN_CTX *ctx);
  60. int EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group,
  61. EC_POINT *p,
  62. const BIGNUM *x, int y_bit,
  63. BN_CTX *ctx);
  64. int EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group, EC_POINT *p,
  65. const BIGNUM *x, const BIGNUM *y,
  66. BN_CTX *ctx);
  67. int EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group,
  68. const EC_POINT *p,
  69. BIGNUM *x, BIGNUM *y, BN_CTX *ctx);
  70. int EC_POINT_set_compressed_coordinates_GF2m(const EC_GROUP *group,
  71. EC_POINT *p,
  72. const BIGNUM *x, int y_bit,
  73. BN_CTX *ctx);
  74. size_t EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *p,
  75. point_conversion_form_t form,
  76. unsigned char *buf, size_t len, BN_CTX *ctx);
  77. size_t EC_POINT_point2buf(const EC_GROUP *group, const EC_POINT *point,
  78. point_conversion_form_t form,
  79. unsigned char **pbuf, BN_CTX *ctx);
  80. int EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *p,
  81. const unsigned char *buf, size_t len, BN_CTX *ctx);
  82. BIGNUM *EC_POINT_point2bn(const EC_GROUP *group, const EC_POINT *p,
  83. point_conversion_form_t form, BIGNUM *bn,
  84. BN_CTX *ctx);
  85. EC_POINT *EC_POINT_bn2point(const EC_GROUP *group, const BIGNUM *bn,
  86. EC_POINT *p, BN_CTX *ctx);
  87. char *EC_POINT_point2hex(const EC_GROUP *group, const EC_POINT *p,
  88. point_conversion_form_t form, BN_CTX *ctx);
  89. EC_POINT *EC_POINT_hex2point(const EC_GROUP *group, const char *hex,
  90. EC_POINT *p, BN_CTX *ctx);
  91. =head1 DESCRIPTION
  92. An B<EC_POINT> structure represents a point on a curve. A new point is
  93. constructed by calling the function EC_POINT_new() and providing the
  94. B<group> object that the point relates to.
  95. EC_POINT_free() frees the memory associated with the B<EC_POINT>.
  96. if B<point> is NULL nothing is done.
  97. EC_POINT_clear_free() destroys any sensitive data held within the EC_POINT and
  98. then frees its memory. If B<point> is NULL nothing is done.
  99. EC_POINT_copy() copies the point B<src> into B<dst>. Both B<src> and B<dst>
  100. must use the same B<EC_METHOD>.
  101. EC_POINT_dup() creates a new B<EC_POINT> object and copies the content from
  102. B<src> to the newly created B<EC_POINT> object.
  103. EC_POINT_method_of() obtains the B<EC_METHOD> associated with B<point>.
  104. A valid point on a curve is the special point at infinity. A point is set to
  105. be at infinity by calling EC_POINT_set_to_infinity().
  106. The affine co-ordinates for a point describe a point in terms of its x and y
  107. position. The function EC_POINT_set_affine_coordinates() sets the B<x> and B<y>
  108. co-ordinates for the point B<p> defined over the curve given in B<group>. The
  109. function EC_POINT_get_affine_coordinates() sets B<x> and B<y>, either of which
  110. may be NULL, to the corresponding coordinates of B<p>.
  111. The functions EC_POINT_set_affine_coordinates_GFp() and
  112. EC_POINT_set_affine_coordinates_GF2m() are synonyms for
  113. EC_POINT_set_affine_coordinates(). They are defined for backwards compatibility
  114. only and should not be used.
  115. The functions EC_POINT_get_affine_coordinates_GFp() and
  116. EC_POINT_get_affine_coordinates_GF2m() are synonyms for
  117. EC_POINT_get_affine_coordinates(). They are defined for backwards compatibility
  118. only and should not be used.
  119. As well as the affine co-ordinates, a point can alternatively be described in
  120. terms of its Jacobian projective co-ordinates (for Fp curves only). Jacobian
  121. projective co-ordinates are expressed as three values x, y and z. Working in
  122. this co-ordinate system provides more efficient point multiplication
  123. operations. A mapping exists between Jacobian projective co-ordinates and
  124. affine co-ordinates. A Jacobian projective co-ordinate (x, y, z) can be written
  125. as an affine co-ordinate as (x/(z^2), y/(z^3)). Conversion to Jacobian
  126. projective from affine co-ordinates is simple. The co-ordinate (x, y) is mapped
  127. to (x, y, 1). To set or get the projective co-ordinates use
  128. EC_POINT_set_Jprojective_coordinates_GFp() and
  129. EC_POINT_get_Jprojective_coordinates_GFp() respectively.
  130. Points can also be described in terms of their compressed co-ordinates. For a
  131. point (x, y), for any given value for x such that the point is on the curve
  132. there will only ever be two possible values for y. Therefore a point can be set
  133. using the EC_POINT_set_compressed_coordinates() function where B<x> is the x
  134. co-ordinate and B<y_bit> is a value 0 or 1 to identify which of the two
  135. possible values for y should be used.
  136. The functions EC_POINT_set_compressed_coordinates_GFp() and
  137. EC_POINT_set_compressed_coordinates_GF2m() are synonyms for
  138. EC_POINT_set_compressed_coordinates(). They are defined for backwards
  139. compatibility only and should not be used.
  140. In addition B<EC_POINT> can be converted to and from various external
  141. representations. The octet form is the binary encoding of the B<ECPoint>
  142. structure (as defined in RFC5480 and used in certificates and TLS records):
  143. only the content octets are present, the B<OCTET STRING> tag and length are
  144. not included. B<BIGNUM> form is the octet form interpreted as a big endian
  145. integer converted to a B<BIGNUM> structure. Hexadecimal form is the octet
  146. form converted to a NULL terminated character string where each character
  147. is one of the printable values 0-9 or A-F (or a-f).
  148. The functions EC_POINT_point2oct(), EC_POINT_oct2point(), EC_POINT_point2bn(),
  149. EC_POINT_bn2point(), EC_POINT_point2hex() and EC_POINT_hex2point() convert from
  150. and to EC_POINTs for the formats: octet, BIGNUM and hexadecimal respectively.
  151. The function EC_POINT_point2oct() encodes the given curve point B<p> as an
  152. octet string into the buffer B<buf> of size B<len>, using the specified
  153. conversion form B<form>.
  154. The encoding conforms with Sec. 2.3.3 of the SECG SEC 1 ("Elliptic Curve
  155. Cryptography") standard.
  156. Similarly the function EC_POINT_oct2point() decodes a curve point into B<p> from
  157. the octet string contained in the given buffer B<buf> of size B<len>, conforming
  158. to Sec. 2.3.4 of the SECG SEC 1 ("Elliptic Curve Cryptography") standard.
  159. The functions EC_POINT_point2hex() and EC_POINT_point2bn() convert a point B<p>,
  160. respectively, to the hexadecimal or BIGNUM representation of the same
  161. encoding of the function EC_POINT_point2oct().
  162. Vice versa, similarly to the function EC_POINT_oct2point(), the functions
  163. EC_POINT_hex2point() and EC_POINT_point2bn() decode the hexadecimal or
  164. BIGNUM representation into the EC_POINT B<p>.
  165. Notice that, according to the standard, the octet string encoding of the point
  166. at infinity for a given curve is fixed to a single octet of value zero and that,
  167. vice versa, a single octet of size zero is decoded as the point at infinity.
  168. The function EC_POINT_point2oct() must be supplied with a buffer long enough to
  169. store the octet form. The return value provides the number of octets stored.
  170. Calling the function with a NULL buffer will not perform the conversion but
  171. will still return the required buffer length.
  172. The function EC_POINT_point2buf() allocates a buffer of suitable length and
  173. writes an EC_POINT to it in octet format. The allocated buffer is written to
  174. B<*pbuf> and its length is returned. The caller must free up the allocated
  175. buffer with a call to OPENSSL_free(). Since the allocated buffer value is
  176. written to B<*pbuf> the B<pbuf> parameter B<MUST NOT> be B<NULL>.
  177. The function EC_POINT_point2hex() will allocate sufficient memory to store the
  178. hexadecimal string. It is the caller's responsibility to free this memory with
  179. a subsequent call to OPENSSL_free().
  180. =head1 RETURN VALUES
  181. EC_POINT_new() and EC_POINT_dup() return the newly allocated EC_POINT or NULL
  182. on error.
  183. The following functions return 1 on success or 0 on error: EC_POINT_copy(),
  184. EC_POINT_set_to_infinity(), EC_POINT_set_Jprojective_coordinates_GFp(),
  185. EC_POINT_get_Jprojective_coordinates_GFp(),
  186. EC_POINT_set_affine_coordinates_GFp(), EC_POINT_get_affine_coordinates_GFp(),
  187. EC_POINT_set_compressed_coordinates_GFp(),
  188. EC_POINT_set_affine_coordinates_GF2m(), EC_POINT_get_affine_coordinates_GF2m(),
  189. EC_POINT_set_compressed_coordinates_GF2m() and EC_POINT_oct2point().
  190. EC_POINT_method_of returns the EC_METHOD associated with the supplied EC_POINT.
  191. EC_POINT_point2oct() and EC_POINT_point2buf() return the length of the required
  192. buffer or 0 on error.
  193. EC_POINT_point2bn() returns the pointer to the BIGNUM supplied, or NULL on
  194. error.
  195. EC_POINT_bn2point() returns the pointer to the EC_POINT supplied, or NULL on
  196. error.
  197. EC_POINT_point2hex() returns a pointer to the hex string, or NULL on error.
  198. EC_POINT_hex2point() returns the pointer to the EC_POINT supplied, or NULL on
  199. error.
  200. =head1 SEE ALSO
  201. L<crypto(7)>, L<EC_GROUP_new(3)>, L<EC_GROUP_copy(3)>,
  202. L<EC_POINT_add(3)>, L<EC_KEY_new(3)>,
  203. L<EC_GFp_simple_method(3)>, L<d2i_ECPKParameters(3)>
  204. =head1 COPYRIGHT
  205. Copyright 2013-2018 The OpenSSL Project Authors. All Rights Reserved.
  206. Licensed under the Apache License 2.0 (the "License"). You may not use
  207. this file except in compliance with the License. You can obtain a copy
  208. in the file LICENSE in the source distribution or at
  209. L<https://www.openssl.org/source/license.html>.
  210. =cut