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