xref: /freebsd/crypto/openssl/doc/man3/EC_GROUP_copy.pod (revision b077aed33b7b6aefca7b17ddb250cf521f938613)
1e71b7053SJung-uk Kim=pod
2e71b7053SJung-uk Kim
3e71b7053SJung-uk Kim=head1 NAME
4e71b7053SJung-uk Kim
5e71b7053SJung-uk KimEC_GROUP_get0_order, EC_GROUP_order_bits, EC_GROUP_get0_cofactor,
6e71b7053SJung-uk KimEC_GROUP_copy, EC_GROUP_dup, EC_GROUP_method_of, EC_GROUP_set_generator,
7e71b7053SJung-uk KimEC_GROUP_get0_generator, EC_GROUP_get_order, EC_GROUP_get_cofactor,
8e71b7053SJung-uk KimEC_GROUP_set_curve_name, EC_GROUP_get_curve_name, EC_GROUP_set_asn1_flag,
9e71b7053SJung-uk KimEC_GROUP_get_asn1_flag, EC_GROUP_set_point_conversion_form,
10e71b7053SJung-uk KimEC_GROUP_get_point_conversion_form, EC_GROUP_get0_seed,
11e71b7053SJung-uk KimEC_GROUP_get_seed_len, EC_GROUP_set_seed, EC_GROUP_get_degree,
12*b077aed3SPierre ProncheryEC_GROUP_check, EC_GROUP_check_named_curve,
13*b077aed3SPierre ProncheryEC_GROUP_check_discriminant, EC_GROUP_cmp,
14e71b7053SJung-uk KimEC_GROUP_get_basis_type, EC_GROUP_get_trinomial_basis,
15*b077aed3SPierre ProncheryEC_GROUP_get_pentanomial_basis, EC_GROUP_get0_field,
16*b077aed3SPierre ProncheryEC_GROUP_get_field_type
17e71b7053SJung-uk Kim- Functions for manipulating EC_GROUP objects
18e71b7053SJung-uk Kim
19e71b7053SJung-uk Kim=head1 SYNOPSIS
20e71b7053SJung-uk Kim
21e71b7053SJung-uk Kim #include <openssl/ec.h>
22e71b7053SJung-uk Kim
23e71b7053SJung-uk Kim int EC_GROUP_copy(EC_GROUP *dst, const EC_GROUP *src);
24e71b7053SJung-uk Kim EC_GROUP *EC_GROUP_dup(const EC_GROUP *src);
25e71b7053SJung-uk Kim
26e71b7053SJung-uk Kim int EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator,
27e71b7053SJung-uk Kim                            const BIGNUM *order, const BIGNUM *cofactor);
28e71b7053SJung-uk Kim const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group);
29e71b7053SJung-uk Kim
30e71b7053SJung-uk Kim int EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx);
31e71b7053SJung-uk Kim const BIGNUM *EC_GROUP_get0_order(const EC_GROUP *group);
32e71b7053SJung-uk Kim int EC_GROUP_order_bits(const EC_GROUP *group);
33e71b7053SJung-uk Kim int EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, BN_CTX *ctx);
34e71b7053SJung-uk Kim const BIGNUM *EC_GROUP_get0_cofactor(const EC_GROUP *group);
35*b077aed3SPierre Pronchery const BIGNUM *EC_GROUP_get0_field(const EC_GROUP *group);
36e71b7053SJung-uk Kim
37e71b7053SJung-uk Kim void EC_GROUP_set_curve_name(EC_GROUP *group, int nid);
38e71b7053SJung-uk Kim int EC_GROUP_get_curve_name(const EC_GROUP *group);
39e71b7053SJung-uk Kim
40e71b7053SJung-uk Kim void EC_GROUP_set_asn1_flag(EC_GROUP *group, int flag);
41e71b7053SJung-uk Kim int EC_GROUP_get_asn1_flag(const EC_GROUP *group);
42e71b7053SJung-uk Kim
43e71b7053SJung-uk Kim void EC_GROUP_set_point_conversion_form(EC_GROUP *group, point_conversion_form_t form);
4417f01e99SJung-uk Kim point_conversion_form_t EC_GROUP_get_point_conversion_form(const EC_GROUP *group);
45e71b7053SJung-uk Kim
46*b077aed3SPierre Pronchery unsigned char *EC_GROUP_get0_seed(const EC_GROUP *group);
47*b077aed3SPierre Pronchery size_t EC_GROUP_get_seed_len(const EC_GROUP *group);
48*b077aed3SPierre Pronchery size_t EC_GROUP_set_seed(EC_GROUP *group, const unsigned char *, size_t len);
49e71b7053SJung-uk Kim
50e71b7053SJung-uk Kim int EC_GROUP_get_degree(const EC_GROUP *group);
51e71b7053SJung-uk Kim
52e71b7053SJung-uk Kim int EC_GROUP_check(const EC_GROUP *group, BN_CTX *ctx);
53*b077aed3SPierre Pronchery int EC_GROUP_check_named_curve(const EC_GROUP *group, int nist_only,
54*b077aed3SPierre Pronchery                                BN_CTX *ctx);
55e71b7053SJung-uk Kim
56e71b7053SJung-uk Kim int EC_GROUP_check_discriminant(const EC_GROUP *group, BN_CTX *ctx);
57e71b7053SJung-uk Kim
58e71b7053SJung-uk Kim int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx);
59e71b7053SJung-uk Kim
60*b077aed3SPierre Pronchery int EC_GROUP_get_basis_type(const EC_GROUP *group);
61*b077aed3SPierre Pronchery int EC_GROUP_get_trinomial_basis(const EC_GROUP *group, unsigned int *k);
62*b077aed3SPierre Pronchery int EC_GROUP_get_pentanomial_basis(const EC_GROUP *group, unsigned int *k1,
63e71b7053SJung-uk Kim                                    unsigned int *k2, unsigned int *k3);
64e71b7053SJung-uk Kim
65*b077aed3SPierre Pronchery int EC_GROUP_get_field_type(const EC_GROUP *group);
66*b077aed3SPierre Pronchery
67*b077aed3SPierre ProncheryThe following function has been deprecated since OpenSSL 3.0, and can be
68*b077aed3SPierre Proncheryhidden entirely by defining B<OPENSSL_API_COMPAT> with a suitable version value,
69*b077aed3SPierre Proncherysee L<openssl_user_macros(7)>:
70*b077aed3SPierre Pronchery
71*b077aed3SPierre Pronchery const EC_METHOD *EC_GROUP_method_of(const EC_GROUP *group);
72*b077aed3SPierre Pronchery
73e71b7053SJung-uk Kim=head1 DESCRIPTION
74e71b7053SJung-uk Kim
7517f01e99SJung-uk KimEC_GROUP_copy() copies the curve B<src> into B<dst>. Both B<src> and B<dst> must use the same EC_METHOD.
76e71b7053SJung-uk Kim
7717f01e99SJung-uk KimEC_GROUP_dup() creates a new EC_GROUP object and copies the content from B<src> to the newly created
78e71b7053SJung-uk KimEC_GROUP object.
79e71b7053SJung-uk Kim
8017f01e99SJung-uk KimEC_GROUP_method_of() obtains the EC_METHOD of B<group>.
81*b077aed3SPierre ProncheryThis function was deprecated in OpenSSL 3.0, since EC_METHOD is no longer a public concept.
82e71b7053SJung-uk Kim
8317f01e99SJung-uk KimEC_GROUP_set_generator() sets curve parameters that must be agreed by all participants using the curve. These
84e71b7053SJung-uk Kimparameters include the B<generator>, the B<order> and the B<cofactor>. The B<generator> is a well defined point on the
85e71b7053SJung-uk Kimcurve chosen for cryptographic operations. Integers used for point multiplications will be between 0 and
86e71b7053SJung-uk Kimn-1 where n is the B<order>. The B<order> multiplied by the B<cofactor> gives the number of points on the curve.
87e71b7053SJung-uk Kim
8817f01e99SJung-uk KimEC_GROUP_get0_generator() returns the generator for the identified B<group>.
89e71b7053SJung-uk Kim
9017f01e99SJung-uk KimEC_GROUP_get_order() retrieves the order of B<group> and copies its value into
9117f01e99SJung-uk KimB<order>.  It fails in case B<group> is not fully initialized (i.e., its order
9217f01e99SJung-uk Kimis not set or set to zero).
93e71b7053SJung-uk Kim
9417f01e99SJung-uk KimEC_GROUP_get_cofactor() retrieves the cofactor of B<group> and copies its value
9517f01e99SJung-uk Kiminto B<cofactor>. It fails in case  B<group> is not fully initialized or if the
9617f01e99SJung-uk Kimcofactor is not set (or set to zero).
9717f01e99SJung-uk Kim
9817f01e99SJung-uk KimThe functions EC_GROUP_set_curve_name() and EC_GROUP_get_curve_name(), set and get the NID for the curve respectively
99e71b7053SJung-uk Kim(see L<EC_GROUP_new(3)>). If a curve does not have a NID associated with it, then EC_GROUP_get_curve_name
10017f01e99SJung-uk Kimwill return NID_undef.
101e71b7053SJung-uk Kim
102e71b7053SJung-uk KimThe asn1_flag value is used to determine whether the curve encoding uses
103e71b7053SJung-uk Kimexplicit parameters or a named curve using an ASN1 OID: many applications only
104e71b7053SJung-uk Kimsupport the latter form. If asn1_flag is B<OPENSSL_EC_NAMED_CURVE> then the
105e71b7053SJung-uk Kimnamed curve form is used and the parameters must have a corresponding
106e71b7053SJung-uk Kimnamed curve NID set. If asn1_flags is B<OPENSSL_EC_EXPLICIT_CURVE> the
10717f01e99SJung-uk Kimparameters are explicitly encoded. The functions EC_GROUP_get_asn1_flag() and
10817f01e99SJung-uk KimEC_GROUP_set_asn1_flag() get and set the status of the asn1_flag for the curve.
1096935a639SJung-uk KimNote: B<OPENSSL_EC_EXPLICIT_CURVE> was added in OpenSSL 1.1.0, for
110e71b7053SJung-uk Kimprevious versions of OpenSSL the value 0 must be used instead. Before OpenSSL
111e71b7053SJung-uk Kim1.1.0 the default form was to use explicit parameters (meaning that
112e71b7053SJung-uk Kimapplications would have to explicitly set the named curve form) in OpenSSL
113e71b7053SJung-uk Kim1.1.0 and later the named curve form is the default.
114e71b7053SJung-uk Kim
115e71b7053SJung-uk KimThe point_conversion_form for a curve controls how EC_POINT data is encoded as ASN1 as defined in X9.62 (ECDSA).
116e71b7053SJung-uk Kimpoint_conversion_form_t is an enum defined as follows:
117e71b7053SJung-uk Kim
118e71b7053SJung-uk Kim typedef enum {
119e71b7053SJung-uk Kim        /** the point is encoded as z||x, where the octet z specifies
120e71b7053SJung-uk Kim         *   which solution of the quadratic equation y is  */
121e71b7053SJung-uk Kim        POINT_CONVERSION_COMPRESSED = 2,
122e71b7053SJung-uk Kim        /** the point is encoded as z||x||y, where z is the octet 0x04  */
123e71b7053SJung-uk Kim        POINT_CONVERSION_UNCOMPRESSED = 4,
124e71b7053SJung-uk Kim        /** the point is encoded as z||x||y, where the octet z specifies
125e71b7053SJung-uk Kim         *  which solution of the quadratic equation y is  */
126e71b7053SJung-uk Kim        POINT_CONVERSION_HYBRID = 6
127e71b7053SJung-uk Kim } point_conversion_form_t;
128e71b7053SJung-uk Kim
129e71b7053SJung-uk KimFor POINT_CONVERSION_UNCOMPRESSED the point is encoded as an octet signifying the UNCOMPRESSED form has been used followed by
130e71b7053SJung-uk Kimthe octets for x, followed by the octets for y.
131e71b7053SJung-uk Kim
132*b077aed3SPierre ProncheryFor any given x coordinate for a point on a curve it is possible to derive two possible y values. For
133e71b7053SJung-uk KimPOINT_CONVERSION_COMPRESSED the point is encoded as an octet signifying that the COMPRESSED form has been used AND which of
134e71b7053SJung-uk Kimthe two possible solutions for y has been used, followed by the octets for x.
135e71b7053SJung-uk Kim
136e71b7053SJung-uk KimFor POINT_CONVERSION_HYBRID the point is encoded as an octet signifying the HYBRID form has been used AND which of the two
137e71b7053SJung-uk Kimpossible solutions for y has been used, followed by the octets for x, followed by the octets for y.
138e71b7053SJung-uk Kim
13917f01e99SJung-uk KimThe functions EC_GROUP_set_point_conversion_form() and EC_GROUP_get_point_conversion_form(), set and get the point_conversion_form
140e71b7053SJung-uk Kimfor the curve respectively.
141e71b7053SJung-uk Kim
142e71b7053SJung-uk KimANSI X9.62 (ECDSA standard) defines a method of generating the curve parameter b from a random number. This provides advantages
143e71b7053SJung-uk Kimin that a parameter obtained in this way is highly unlikely to be susceptible to special purpose attacks, or have any trapdoors in it.
144e71b7053SJung-uk KimIf the seed is present for a curve then the b parameter was generated in a verifiable fashion using that seed. The OpenSSL EC library
14517f01e99SJung-uk Kimdoes not use this seed value but does enable you to inspect it using EC_GROUP_get0_seed(). This returns a pointer to a memory block
14617f01e99SJung-uk Kimcontaining the seed that was used. The length of the memory block can be obtained using EC_GROUP_get_seed_len(). A number of the
14717f01e99SJung-uk Kimbuilt-in curves within the library provide seed values that can be obtained. It is also possible to set a custom seed using
14817f01e99SJung-uk KimEC_GROUP_set_seed() and passing a pointer to a memory block, along with the length of the seed. Again, the EC library will not use
149e71b7053SJung-uk Kimthis seed value, although it will be preserved in any ASN1 based communications.
150e71b7053SJung-uk Kim
151*b077aed3SPierre ProncheryEC_GROUP_get_degree() gets the degree of the field.
152*b077aed3SPierre ProncheryFor Fp fields this will be the number of bits in p.
153*b077aed3SPierre ProncheryFor F2^m fields this will be the value m.
154*b077aed3SPierre Pronchery
155*b077aed3SPierre ProncheryEC_GROUP_get_field_type() identifies what type of field the EC_GROUP structure supports,
156*b077aed3SPierre Proncherywhich will be either F2^m or Fp.
157e71b7053SJung-uk Kim
15817f01e99SJung-uk KimThe function EC_GROUP_check_discriminant() calculates the discriminant for the curve and verifies that it is valid.
159e71b7053SJung-uk KimFor a curve defined over Fp the discriminant is given by the formula 4*a^3 + 27*b^2 whilst for F2^m curves the discriminant is
160e71b7053SJung-uk Kimsimply b. In either case for the curve to be valid the discriminant must be non zero.
161e71b7053SJung-uk Kim
162*b077aed3SPierre ProncheryThe function EC_GROUP_check() behaves in the following way:
163*b077aed3SPierre ProncheryFor the OpenSSL default provider it performs a number of checks on a curve to verify that it is valid. Checks performed include
164e71b7053SJung-uk Kimverifying that the discriminant is non zero; that a generator has been defined; that the generator is on the curve and has
165*b077aed3SPierre Proncherythe correct order. For the OpenSSL FIPS provider it uses EC_GROUP_check_named_curve() to conform to SP800-56Ar3.
166*b077aed3SPierre Pronchery
167*b077aed3SPierre ProncheryThe function EC_GROUP_check_named_curve() determines if the group's domain parameters match one of the built-in curves supported by the library.
168*b077aed3SPierre ProncheryThe curve name is returned as a B<NID> if it matches. If the group's domain parameters have been modified then no match will be found.
169*b077aed3SPierre ProncheryIf the curve name of the given group is B<NID_undef> (e.g. it has been created by using explicit parameters with no curve name),
170*b077aed3SPierre Proncherythen this method can be used to lookup the name of the curve that matches the group domain parameters. The built-in curves contain
171*b077aed3SPierre Proncheryaliases, so that multiple NID's can map to the same domain parameters. For such curves it is unspecified which of the aliases will be
172*b077aed3SPierre Proncheryreturned if the curve name of the given group is NID_undef.
173*b077aed3SPierre ProncheryIf B<nist_only> is 1 it will only look for NIST approved curves, otherwise it searches all built-in curves.
174*b077aed3SPierre ProncheryThis function may be passed a BN_CTX object in the B<ctx> parameter.
175*b077aed3SPierre ProncheryThe B<ctx> parameter may be NULL.
176e71b7053SJung-uk Kim
17717f01e99SJung-uk KimEC_GROUP_cmp() compares B<a> and B<b> to determine whether they represent the same curve or not.
178e71b7053SJung-uk Kim
17917f01e99SJung-uk KimThe functions EC_GROUP_get_basis_type(), EC_GROUP_get_trinomial_basis() and EC_GROUP_get_pentanomial_basis() should only be called for curves
180e71b7053SJung-uk Kimdefined over an F2^m field. Addition and multiplication operations within an F2^m field are performed using an irreducible polynomial
181e71b7053SJung-uk Kimfunction f(x). This function is either a trinomial of the form:
182e71b7053SJung-uk Kim
183e71b7053SJung-uk Kimf(x) = x^m + x^k + 1 with m > k >= 1
184e71b7053SJung-uk Kim
185e71b7053SJung-uk Kimor a pentanomial of the form:
186e71b7053SJung-uk Kim
187e71b7053SJung-uk Kimf(x) = x^m + x^k3 + x^k2 + x^k1 + 1 with m > k3 > k2 > k1 >= 1
188e71b7053SJung-uk Kim
18917f01e99SJung-uk KimThe function EC_GROUP_get_basis_type() returns a NID identifying whether a trinomial or pentanomial is in use for the field. The
19017f01e99SJung-uk Kimfunction EC_GROUP_get_trinomial_basis() must only be called where f(x) is of the trinomial form, and returns the value of B<k>. Similarly
19117f01e99SJung-uk Kimthe function EC_GROUP_get_pentanomial_basis() must only be called where f(x) is of the pentanomial form, and returns the values of B<k1>,
192e71b7053SJung-uk KimB<k2> and B<k3> respectively.
193e71b7053SJung-uk Kim
194e71b7053SJung-uk Kim=head1 RETURN VALUES
195e71b7053SJung-uk Kim
19617f01e99SJung-uk KimThe following functions return 1 on success or 0 on error: EC_GROUP_copy(), EC_GROUP_set_generator(), EC_GROUP_check(),
19717f01e99SJung-uk KimEC_GROUP_check_discriminant(), EC_GROUP_get_trinomial_basis() and EC_GROUP_get_pentanomial_basis().
198e71b7053SJung-uk Kim
19917f01e99SJung-uk KimEC_GROUP_dup() returns a pointer to the duplicated curve, or NULL on error.
200e71b7053SJung-uk Kim
20117f01e99SJung-uk KimEC_GROUP_method_of() returns the EC_METHOD implementation in use for the given curve or NULL on error.
202e71b7053SJung-uk Kim
20317f01e99SJung-uk KimEC_GROUP_get0_generator() returns the generator for the given curve or NULL on error.
204e71b7053SJung-uk Kim
20517f01e99SJung-uk KimEC_GROUP_get_order() returns 0 if the order is not set (or set to zero) for
20617f01e99SJung-uk KimB<group> or if copying into B<order> fails, 1 otherwise.
20717f01e99SJung-uk Kim
20817f01e99SJung-uk KimEC_GROUP_get_cofactor() returns 0 if the cofactor is not set (or is set to zero) for B<group> or if copying into B<cofactor> fails, 1 otherwise.
20917f01e99SJung-uk Kim
21017f01e99SJung-uk KimEC_GROUP_get_curve_name() returns the curve name (NID) for B<group> or will return NID_undef if no curve name is associated.
21117f01e99SJung-uk Kim
21217f01e99SJung-uk KimEC_GROUP_get_asn1_flag() returns the ASN1 flag for the specified B<group> .
21317f01e99SJung-uk Kim
21417f01e99SJung-uk KimEC_GROUP_get_point_conversion_form() returns the point_conversion_form for B<group>.
21517f01e99SJung-uk Kim
21617f01e99SJung-uk KimEC_GROUP_get_degree() returns the degree for B<group> or 0 if the operation is not supported by the underlying group implementation.
217e71b7053SJung-uk Kim
218*b077aed3SPierre ProncheryEC_GROUP_get_field_type() returns either B<NID_X9_62_prime_field> for prime curves
219*b077aed3SPierre Proncheryor B<NID_X9_62_characteristic_two_field> for binary curves;
220*b077aed3SPierre Proncherythese values are defined in the F<< <openssl/obj_mac.h> >> header file.
221*b077aed3SPierre Pronchery
222*b077aed3SPierre ProncheryEC_GROUP_check_named_curve() returns the nid of the matching named curve, otherwise it returns 0 for no match, or -1 on error.
223*b077aed3SPierre Pronchery
224e71b7053SJung-uk KimEC_GROUP_get0_order() returns an internal pointer to the group order.
2256935a639SJung-uk KimEC_GROUP_order_bits() returns the number of bits in the group order.
226e71b7053SJung-uk KimEC_GROUP_get0_cofactor() returns an internal pointer to the group cofactor.
227*b077aed3SPierre ProncheryEC_GROUP_get0_field() returns an internal pointer to the group field. For curves over GF(p), this is the modulus; for curves
228*b077aed3SPierre Proncheryover GF(2^m), this is the irreducible polynomial defining the field.
229e71b7053SJung-uk Kim
23017f01e99SJung-uk KimEC_GROUP_get0_seed() returns a pointer to the seed that was used to generate the parameter b, or NULL if the seed is not
23117f01e99SJung-uk Kimspecified. EC_GROUP_get_seed_len() returns the length of the seed or 0 if the seed is not specified.
232e71b7053SJung-uk Kim
23317f01e99SJung-uk KimEC_GROUP_set_seed() returns the length of the seed that has been set. If the supplied seed is NULL, or the supplied seed length is
234e71b7053SJung-uk Kim0, the return value will be 1. On error 0 is returned.
235e71b7053SJung-uk Kim
23617f01e99SJung-uk KimEC_GROUP_cmp() returns 0 if the curves are equal, 1 if they are not equal, or -1 on error.
237e71b7053SJung-uk Kim
238*b077aed3SPierre ProncheryEC_GROUP_get_basis_type() returns the values NID_X9_62_tpBasis or NID_X9_62_ppBasis (as defined in F<< <openssl/obj_mac.h> >>) for a
239e71b7053SJung-uk Kimtrinomial or pentanomial respectively. Alternatively in the event of an error a 0 is returned.
240e71b7053SJung-uk Kim
241e71b7053SJung-uk Kim=head1 SEE ALSO
242e71b7053SJung-uk Kim
243e71b7053SJung-uk KimL<crypto(7)>, L<EC_GROUP_new(3)>,
244e71b7053SJung-uk KimL<EC_POINT_new(3)>, L<EC_POINT_add(3)>, L<EC_KEY_new(3)>,
245e71b7053SJung-uk KimL<EC_GFp_simple_method(3)>, L<d2i_ECPKParameters(3)>
246e71b7053SJung-uk Kim
247*b077aed3SPierre Pronchery=head1 HISTORY
248*b077aed3SPierre Pronchery
249*b077aed3SPierre ProncheryEC_GROUP_method_of() was deprecated in OpenSSL 3.0.
250*b077aed3SPierre ProncheryEC_GROUP_get0_field(), EC_GROUP_check_named_curve() and EC_GROUP_get_field_type() were added in OpenSSL 3.0.
251*b077aed3SPierre ProncheryEC_GROUP_get0_order(), EC_GROUP_order_bits() and EC_GROUP_get0_cofactor() were added in OpenSSL 1.1.0.
252*b077aed3SPierre Pronchery
253e71b7053SJung-uk Kim=head1 COPYRIGHT
254e71b7053SJung-uk Kim
255*b077aed3SPierre ProncheryCopyright 2013-2023 The OpenSSL Project Authors. All Rights Reserved.
256e71b7053SJung-uk Kim
257*b077aed3SPierre ProncheryLicensed under the Apache License 2.0 (the "License").  You may not use
258e71b7053SJung-uk Kimthis file except in compliance with the License.  You can obtain a copy
259e71b7053SJung-uk Kimin the file LICENSE in the source distribution or at
260e71b7053SJung-uk KimL<https://www.openssl.org/source/license.html>.
261e71b7053SJung-uk Kim
262e71b7053SJung-uk Kim=cut
263