Blame doc/man3/EC_POINT_new.pod

Packit c4476c
=pod
Packit c4476c
Packit c4476c
=head1 NAME
Packit c4476c
Packit c4476c
EC_POINT_set_Jprojective_coordinates_GFp,
Packit c4476c
EC_POINT_point2buf,
Packit c4476c
EC_POINT_new,
Packit c4476c
EC_POINT_free,
Packit c4476c
EC_POINT_clear_free,
Packit c4476c
EC_POINT_copy,
Packit c4476c
EC_POINT_dup,
Packit c4476c
EC_POINT_method_of,
Packit c4476c
EC_POINT_set_to_infinity,
Packit c4476c
EC_POINT_get_Jprojective_coordinates_GFp,
Packit c4476c
EC_POINT_set_affine_coordinates,
Packit c4476c
EC_POINT_get_affine_coordinates,
Packit c4476c
EC_POINT_set_compressed_coordinates,
Packit c4476c
EC_POINT_set_affine_coordinates_GFp,
Packit c4476c
EC_POINT_get_affine_coordinates_GFp,
Packit c4476c
EC_POINT_set_compressed_coordinates_GFp,
Packit c4476c
EC_POINT_set_affine_coordinates_GF2m,
Packit c4476c
EC_POINT_get_affine_coordinates_GF2m,
Packit c4476c
EC_POINT_set_compressed_coordinates_GF2m,
Packit c4476c
EC_POINT_point2oct,
Packit c4476c
EC_POINT_oct2point,
Packit c4476c
EC_POINT_point2bn,
Packit c4476c
EC_POINT_bn2point,
Packit c4476c
EC_POINT_point2hex,
Packit c4476c
EC_POINT_hex2point
Packit c4476c
- Functions for creating, destroying and manipulating EC_POINT objects
Packit c4476c
Packit c4476c
=head1 SYNOPSIS
Packit c4476c
Packit c4476c
 #include <openssl/ec.h>
Packit c4476c
Packit c4476c
 EC_POINT *EC_POINT_new(const EC_GROUP *group);
Packit c4476c
 void EC_POINT_free(EC_POINT *point);
Packit c4476c
 void EC_POINT_clear_free(EC_POINT *point);
Packit c4476c
 int EC_POINT_copy(EC_POINT *dst, const EC_POINT *src);
Packit c4476c
 EC_POINT *EC_POINT_dup(const EC_POINT *src, const EC_GROUP *group);
Packit c4476c
 const EC_METHOD *EC_POINT_method_of(const EC_POINT *point);
Packit c4476c
 int EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point);
Packit c4476c
 int EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group,
Packit c4476c
                                              EC_POINT *p,
Packit c4476c
                                              const BIGNUM *x, const BIGNUM *y,
Packit c4476c
                                              const BIGNUM *z, BN_CTX *ctx);
Packit c4476c
 int EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group,
Packit c4476c
                                              const EC_POINT *p,
Packit c4476c
                                              BIGNUM *x, BIGNUM *y, BIGNUM *z,
Packit c4476c
                                              BN_CTX *ctx);
Packit c4476c
 int EC_POINT_set_affine_coordinates(const EC_GROUP *group, EC_POINT *p,
Packit c4476c
                                     const BIGNUM *x, const BIGNUM *y,
Packit c4476c
                                     BN_CTX *ctx);
Packit c4476c
 int EC_POINT_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *p,
Packit c4476c
                                     BIGNUM *x, BIGNUM *y, BN_CTX *ctx);
Packit c4476c
 int EC_POINT_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *p,
Packit c4476c
                                         const BIGNUM *x, int y_bit,
Packit c4476c
                                         BN_CTX *ctx);
Packit c4476c
 int EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *p,
Packit c4476c
                                         const BIGNUM *x, const BIGNUM *y,
Packit c4476c
                                         BN_CTX *ctx);
Packit c4476c
 int EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group,
Packit c4476c
                                         const EC_POINT *p,
Packit c4476c
                                         BIGNUM *x, BIGNUM *y, BN_CTX *ctx);
Packit c4476c
 int EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group,
Packit c4476c
                                             EC_POINT *p,
Packit c4476c
                                             const BIGNUM *x, int y_bit,
Packit c4476c
                                             BN_CTX *ctx);
Packit c4476c
 int EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group, EC_POINT *p,
Packit c4476c
                                          const BIGNUM *x, const BIGNUM *y,
Packit c4476c
                                          BN_CTX *ctx);
Packit c4476c
 int EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group,
Packit c4476c
                                          const EC_POINT *p,
Packit c4476c
                                          BIGNUM *x, BIGNUM *y, BN_CTX *ctx);
Packit c4476c
 int EC_POINT_set_compressed_coordinates_GF2m(const EC_GROUP *group,
Packit c4476c
                                              EC_POINT *p,
Packit c4476c
                                              const BIGNUM *x, int y_bit,
Packit c4476c
                                              BN_CTX *ctx);
Packit c4476c
 size_t EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *p,
Packit c4476c
                           point_conversion_form_t form,
Packit c4476c
                           unsigned char *buf, size_t len, BN_CTX *ctx);
Packit c4476c
 size_t EC_POINT_point2buf(const EC_GROUP *group, const EC_POINT *point,
Packit c4476c
                           point_conversion_form_t form,
Packit c4476c
                           unsigned char **pbuf, BN_CTX *ctx);
Packit c4476c
 int EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *p,
Packit c4476c
                        const unsigned char *buf, size_t len, BN_CTX *ctx);
Packit c4476c
 BIGNUM *EC_POINT_point2bn(const EC_GROUP *group, const EC_POINT *p,
Packit c4476c
                           point_conversion_form_t form, BIGNUM *bn,
Packit c4476c
                           BN_CTX *ctx);
Packit c4476c
 EC_POINT *EC_POINT_bn2point(const EC_GROUP *group, const BIGNUM *bn,
Packit c4476c
                             EC_POINT *p, BN_CTX *ctx);
Packit c4476c
 char *EC_POINT_point2hex(const EC_GROUP *group, const EC_POINT *p,
Packit c4476c
                          point_conversion_form_t form, BN_CTX *ctx);
Packit c4476c
 EC_POINT *EC_POINT_hex2point(const EC_GROUP *group, const char *hex,
Packit c4476c
                              EC_POINT *p, BN_CTX *ctx);
Packit c4476c
Packit c4476c
Packit c4476c
=head1 DESCRIPTION
Packit c4476c
Packit c4476c
An B<EC_POINT> structure represents a point on a curve. A new point is
Packit c4476c
constructed by calling the function EC_POINT_new() and providing the
Packit c4476c
B<group> object that the point relates to.
Packit c4476c
Packit c4476c
EC_POINT_free() frees the memory associated with the B<EC_POINT>.
Packit c4476c
if B<point> is NULL nothing is done.
Packit c4476c
Packit c4476c
EC_POINT_clear_free() destroys any sensitive data held within the EC_POINT and
Packit c4476c
then frees its memory. If B<point> is NULL nothing is done.
Packit c4476c
Packit c4476c
EC_POINT_copy() copies the point B<src> into B<dst>. Both B<src> and B<dst>
Packit c4476c
must use the same B<EC_METHOD>.
Packit c4476c
Packit c4476c
EC_POINT_dup() creates a new B<EC_POINT> object and copies the content from
Packit c4476c
B<src> to the newly created B<EC_POINT> object.
Packit c4476c
Packit c4476c
EC_POINT_method_of() obtains the B<EC_METHOD> associated with B<point>.
Packit c4476c
Packit c4476c
A valid point on a curve is the special point at infinity. A point is set to
Packit c4476c
be at infinity by calling EC_POINT_set_to_infinity().
Packit c4476c
Packit c4476c
The affine co-ordinates for a point describe a point in terms of its x and y
Packit c4476c
position. The function EC_POINT_set_affine_coordinates() sets the B<x> and B<y>
Packit c4476c
co-ordinates for the point B

defined over the curve given in B<group>. The

Packit c4476c
function EC_POINT_get_affine_coordinates() sets B<x> and B<y>, either of which
Packit c4476c
may be NULL, to the corresponding coordinates of B

.

Packit c4476c
Packit c4476c
The functions EC_POINT_set_affine_coordinates_GFp() and
Packit c4476c
EC_POINT_set_affine_coordinates_GF2m() are synonyms for
Packit c4476c
EC_POINT_set_affine_coordinates(). They are defined for backwards compatibility
Packit c4476c
only and should not be used.
Packit c4476c
Packit c4476c
The functions EC_POINT_get_affine_coordinates_GFp() and
Packit c4476c
EC_POINT_get_affine_coordinates_GF2m() are synonyms for
Packit c4476c
EC_POINT_get_affine_coordinates(). They are defined for backwards compatibility
Packit c4476c
only and should not be used.
Packit c4476c
Packit c4476c
As well as the affine co-ordinates, a point can alternatively be described in
Packit c4476c
terms of its Jacobian projective co-ordinates (for Fp curves only). Jacobian
Packit c4476c
projective co-ordinates are expressed as three values x, y and z. Working in
Packit c4476c
this co-ordinate system provides more efficient point multiplication
Packit c4476c
operations.  A mapping exists between Jacobian projective co-ordinates and
Packit c4476c
affine co-ordinates. A Jacobian projective co-ordinate (x, y, z) can be written
Packit c4476c
as an affine co-ordinate as (x/(z^2), y/(z^3)). Conversion to Jacobian
Packit c4476c
projective from affine co-ordinates is simple. The co-ordinate (x, y) is mapped
Packit c4476c
to (x, y, 1). To set or get the projective co-ordinates use
Packit c4476c
EC_POINT_set_Jprojective_coordinates_GFp() and
Packit c4476c
EC_POINT_get_Jprojective_coordinates_GFp() respectively.
Packit c4476c
Packit c4476c
Points can also be described in terms of their compressed co-ordinates. For a
Packit c4476c
point (x, y), for any given value for x such that the point is on the curve
Packit c4476c
there will only ever be two possible values for y. Therefore a point can be set
Packit c4476c
using the EC_POINT_set_compressed_coordinates() function where B<x> is the x
Packit c4476c
co-ordinate and B<y_bit> is a value 0 or 1 to identify which of the two
Packit c4476c
possible values for y should be used.
Packit c4476c
Packit c4476c
The functions EC_POINT_set_compressed_coordinates_GFp() and
Packit c4476c
EC_POINT_set_compressed_coordinates_GF2m() are synonyms for
Packit c4476c
EC_POINT_set_compressed_coordinates(). They are defined for backwards
Packit c4476c
compatibility only and should not be used.
Packit c4476c
Packit c4476c
In addition B<EC_POINT> can be converted to and from various external
Packit c4476c
representations. The octet form is the binary encoding of the B<ECPoint>
Packit c4476c
structure (as defined in RFC5480 and used in certificates and TLS records):
Packit c4476c
only the content octets are present, the B<OCTET STRING> tag and length are
Packit c4476c
not included. B<BIGNUM> form is the octet form interpreted as a big endian
Packit c4476c
integer converted to a B<BIGNUM> structure. Hexadecimal form is the octet
Packit c4476c
form converted to a NULL terminated character string where each character
Packit c4476c
is one of the printable values 0-9 or A-F (or a-f).
Packit c4476c
Packit c4476c
The functions EC_POINT_point2oct(), EC_POINT_oct2point(), EC_POINT_point2bn(),
Packit c4476c
EC_POINT_bn2point(), EC_POINT_point2hex() and EC_POINT_hex2point() convert from
Packit c4476c
and to EC_POINTs for the formats: octet, BIGNUM and hexadecimal respectively.
Packit c4476c
Packit c4476c
The function EC_POINT_point2oct() encodes the given curve point B

as an

Packit c4476c
octet string into the buffer B<buf> of size B<len>, using the specified
Packit c4476c
conversion form B<form>.
Packit c4476c
The encoding conforms with Sec. 2.3.3 of the SECG SEC 1 ("Elliptic Curve
Packit c4476c
Cryptography") standard.
Packit c4476c
Similarly the function EC_POINT_oct2point() decodes a curve point into B

from

Packit c4476c
the octet string contained in the given buffer B<buf> of size B<len>, conforming
Packit c4476c
to Sec. 2.3.4 of the SECG SEC 1 ("Elliptic Curve Cryptography") standard.
Packit c4476c
Packit c4476c
The functions EC_POINT_point2hex() and EC_POINT_point2bn() convert a point B

,

Packit c4476c
respectively, to the hexadecimal or BIGNUM representation of the same
Packit c4476c
encoding of the function EC_POINT_point2oct().
Packit c4476c
Vice versa, similarly to the function EC_POINT_oct2point(), the functions
Packit c4476c
EC_POINT_hex2point() and EC_POINT_point2bn() decode the hexadecimal or
Packit c4476c
BIGNUM representation into the EC_POINT B

.

Packit c4476c
Packit c4476c
Notice that, according to the standard, the octet string encoding of the point
Packit c4476c
at infinity for a given curve is fixed to a single octet of value zero and that,
Packit c4476c
vice versa, a single octet of size zero is decoded as the point at infinity.
Packit c4476c
Packit c4476c
The function EC_POINT_point2oct() must be supplied with a buffer long enough to
Packit c4476c
store the octet form. The return value provides the number of octets stored.
Packit c4476c
Calling the function with a NULL buffer will not perform the conversion but
Packit c4476c
will still return the required buffer length.
Packit c4476c
Packit c4476c
The function EC_POINT_point2buf() allocates a buffer of suitable length and
Packit c4476c
writes an EC_POINT to it in octet format. The allocated buffer is written to
Packit c4476c
B<*pbuf> and its length is returned. The caller must free up the allocated
Packit c4476c
buffer with a call to OPENSSL_free(). Since the allocated buffer value is
Packit c4476c
written to B<*pbuf> the B<pbuf> parameter B<MUST NOT> be B<NULL>.
Packit c4476c
Packit c4476c
The function EC_POINT_point2hex() will allocate sufficient memory to store the
Packit c4476c
hexadecimal string. It is the caller's responsibility to free this memory with
Packit c4476c
a subsequent call to OPENSSL_free().
Packit c4476c
Packit c4476c
=head1 RETURN VALUES
Packit c4476c
Packit c4476c
EC_POINT_new() and EC_POINT_dup() return the newly allocated EC_POINT or NULL
Packit c4476c
on error.
Packit c4476c
Packit c4476c
The following functions return 1 on success or 0 on error: EC_POINT_copy(),
Packit c4476c
EC_POINT_set_to_infinity(), EC_POINT_set_Jprojective_coordinates_GFp(),
Packit c4476c
EC_POINT_get_Jprojective_coordinates_GFp(),
Packit c4476c
EC_POINT_set_affine_coordinates_GFp(), EC_POINT_get_affine_coordinates_GFp(),
Packit c4476c
EC_POINT_set_compressed_coordinates_GFp(),
Packit c4476c
EC_POINT_set_affine_coordinates_GF2m(), EC_POINT_get_affine_coordinates_GF2m(),
Packit c4476c
EC_POINT_set_compressed_coordinates_GF2m() and EC_POINT_oct2point().
Packit c4476c
Packit c4476c
EC_POINT_method_of returns the EC_METHOD associated with the supplied EC_POINT.
Packit c4476c
Packit c4476c
EC_POINT_point2oct() and EC_POINT_point2buf() return the length of the required
Packit c4476c
buffer or 0 on error.
Packit c4476c
Packit c4476c
EC_POINT_point2bn() returns the pointer to the BIGNUM supplied, or NULL on
Packit c4476c
error.
Packit c4476c
Packit c4476c
EC_POINT_bn2point() returns the pointer to the EC_POINT supplied, or NULL on
Packit c4476c
error.
Packit c4476c
Packit c4476c
EC_POINT_point2hex() returns a pointer to the hex string, or NULL on error.
Packit c4476c
Packit c4476c
EC_POINT_hex2point() returns the pointer to the EC_POINT supplied, or NULL on
Packit c4476c
error.
Packit c4476c
Packit c4476c
=head1 SEE ALSO
Packit c4476c
Packit c4476c
L<crypto(7)>, L<EC_GROUP_new(3)>, L<EC_GROUP_copy(3)>,
Packit c4476c
L<EC_POINT_add(3)>, L<EC_KEY_new(3)>,
Packit c4476c
L<EC_GFp_simple_method(3)>, L<d2i_ECPKParameters(3)>
Packit c4476c
Packit c4476c
=head1 COPYRIGHT
Packit c4476c
Packit c4476c
Copyright 2013-2018 The OpenSSL Project Authors. All Rights Reserved.
Packit c4476c
Packit c4476c
Licensed under the OpenSSL license (the "License").  You may not use
Packit c4476c
this file except in compliance with the License.  You can obtain a copy
Packit c4476c
in the file LICENSE in the source distribution or at
Packit c4476c
L<https://www.openssl.org/source/license.html>.
Packit c4476c
Packit c4476c
=cut