NAME
EC_GROUP_new
,
EC_GROUP_free
,
EC_GROUP_clear_free
,
EC_GROUP_new_curve_GFp
,
EC_GROUP_new_by_curve_name
,
EC_GROUP_set_curve
,
EC_GROUP_get_curve
,
EC_GROUP_set_curve_GFp
,
EC_GROUP_get_curve_GFp
,
EC_get_builtin_curves
,
EC_curve_nid2nist
,
EC_curve_nist2nid
—
create and destroy EC_GROUP
objects
SYNOPSIS
#include
<openssl/ec.h>
#include <openssl/bn.h>
EC_GROUP *
EC_GROUP_new
(const EC_METHOD
*meth);
void
EC_GROUP_free
(EC_GROUP
*group);
void
EC_GROUP_clear_free
(EC_GROUP
*group);
EC_GROUP *
EC_GROUP_new_curve_GFp
(const BIGNUM
*p, const BIGNUM *a, const
BIGNUM *b, BN_CTX *ctx);
EC_GROUP *
EC_GROUP_new_by_curve_name
(int
nid);
int
EC_GROUP_set_curve
(EC_GROUP
*group, const BIGNUM *p, const
BIGNUM *a, const BIGNUM *b,
BN_CTX *ctx);
int
EC_GROUP_get_curve
(const EC_GROUP
*group, BIGNUM *p, BIGNUM
*a, BIGNUM *b, BN_CTX
*ctx);
int
EC_GROUP_set_curve_GFp
(EC_GROUP
*group, const BIGNUM *p, const
BIGNUM *a, const BIGNUM *b,
BN_CTX *ctx);
int
EC_GROUP_get_curve_GFp
(const EC_GROUP
*group, BIGNUM *p, BIGNUM
*a, BIGNUM *b, BN_CTX
*ctx);
size_t
EC_get_builtin_curves
(EC_builtin_curve
*r, size_t nitems);
const char *
EC_curve_nid2nist
(int nid);
int
EC_curve_nist2nid
(const char
*name);
DESCRIPTION
The EC library provides functions for performing operations on elliptic curves in Weierstrass form. Such curves are defined over the prime field of order p and satisfy the Weierstrass equation with coefficients a and b
y^2 = x^3 + ax + b
An EC_GROUP structure is
used to represent the definition of an elliptic curve. A new curve can be
constructed by calling
EC_GROUP_new
(),
using the implementation provided by meth (see
EC_GFp_simple_method(3)). It is then necessary to call
EC_GROUP_set_curve
() to set the curve
parameters.
EC_GROUP_set_curve
()
sets the curve parameters p, a,
and b, where a and
b represent the coefficients of the curve
equation.
EC_GROUP_set_curve_GFp
()
is a deprecated synonym for
EC_GROUP_set_curve
().
EC_GROUP_get_curve
()
obtains the previously set curve parameters.
EC_GROUP_get_curve_GFp
()
is a deprecated synonym for
EC_GROUP_get_curve
().
The function
EC_GROUP_new_curve_GFp
()
is a shortcut for calling EC_GROUP_new
() and
EC_GROUP_set_curve
(). An appropriate default
implementation method will be used.
Whilst the library can be used to
create any curve using the functions described above, there are also a
number of predefined curves that are available. In order to obtain a list of
all of the predefined curves, call the function
EC_get_builtin_curves
().
The parameter r should be an array of
EC_builtin_cure structures of size
nitems. The function will populate the
r array with information about the builtin curves. If
nitems is less than the total number of curves
available, then the first nitems curves will be
returned. Otherwise the total number of curves will be provided. The return
value is the total number of curves available (whether that number has been
populated in r or not). Passing a
NULL
r, or setting
nitems to 0, will do nothing other than return the
total number of curves available. The EC_builtin_curve
structure is defined as follows:
typedef struct { int nid; const char *comment; } EC_builtin_curve;
Each EC_builtin_curve item has a unique integer ID (nid) and a human readable comment string describing the curve.
In order to construct a builtin
curve, use the function
EC_GROUP_new_by_curve_name
()
and provide the nid of the curve to be
constructed.
EC_GROUP_free
()
frees the memory associated with the EC_GROUP. If
group is a NULL
pointer, no
action occurs.
EC_GROUP_clear_free
()
destroys any sensitive data held within the EC_GROUP
and then frees its memory. If group is a
NULL
pointer, no action occurs.
Some builtin curves can be identified by
their NIST name in addition to a numerical identifier (NID).
EC_curve_nid2nist
()
and
EC_curve_nist2nid
()
translate between the two. The five built-in prime curves are:
NIST name | ASN.1 NID | notes |
"P-192" | NID_X9_62_prime192v1 |
deprecated in SP800-186 |
"P-224" | NID_secp224r1 |
|
"P-256" | NID_X9_62_prime256v1 |
|
"P-384" | NID_secp384r1 |
|
"P-521" | NID_secp521r1 |
EC_curve_nid2nist
()
and
EC_curve_nist2nid
()
also accept the ten binary curves defined in FIPS 186-4 and deprecated in
SP800-186, although they no longer correspond to builtin curves in
LibreSSL.
RETURN VALUES
All EC_GROUP_new*
() functions return a
pointer to the newly constructed group or NULL
on
error.
EC_get_builtin_curves
() returns the number
of builtin curves that are available.
EC_curve_nid2nist
() returns a string
constant containing the NIST name if nid identifies a
NIST curve or NULL
otherwise.
EC_curve_nist2nid
() returns the NID
corresponding to the NIST curve name, or
NID_undef
.
EC_GROUP_set_curve
(),
EC_GROUP_get_curve
(),
EC_GROUP_set_curve_GFp
(), and
EC_GROUP_get_curve_GFp
() return 1 on success or 0 on
error.
SEE ALSO
crypto(3), d2i_ECPKParameters(3), EC_GFp_simple_method(3), EC_GROUP_copy(3), EC_KEY_new(3), EC_POINT_add(3), EC_POINT_new(3), ECDH_compute_key(3), ECDSA_SIG_new(3)
HISTORY
EC_GROUP_new
(),
EC_GROUP_free
(),
EC_GROUP_clear_free
(),
EC_GROUP_new_curve_GFp
(),
EC_GROUP_set_curve_GFp
(), and
EC_GROUP_get_curve_GFp
() first appeared in OpenSSL
0.9.7 and have been available since OpenBSD 3.2.
EC_GROUP_new_by_curve_name
() and
EC_get_builtin_curves
() first appeared in OpenSSL
0.9.8 and have been available since OpenBSD 4.5.
EC_curve_nid2nist
(), and
EC_curve_nist2nid
() first appeared in OpenSSL 1.1.0
and have been available since OpenBSD 5.8.
EC_GROUP_set_curve
() and
EC_GROUP_get_curve
() first appeared in OpenSSL 1.1.1
and have been available since OpenBSD 7.0.