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