Blame doc/man3/EC_GROUP_copy.pod

Packit c4476c
=pod
Packit c4476c
Packit c4476c
=head1 NAME
Packit c4476c
Packit c4476c
EC_GROUP_get0_order, EC_GROUP_order_bits, EC_GROUP_get0_cofactor,
Packit c4476c
EC_GROUP_copy, EC_GROUP_dup, EC_GROUP_method_of, EC_GROUP_set_generator,
Packit c4476c
EC_GROUP_get0_generator, EC_GROUP_get_order, EC_GROUP_get_cofactor,
Packit c4476c
EC_GROUP_set_curve_name, EC_GROUP_get_curve_name, EC_GROUP_set_asn1_flag,
Packit c4476c
EC_GROUP_get_asn1_flag, EC_GROUP_set_point_conversion_form,
Packit c4476c
EC_GROUP_get_point_conversion_form, EC_GROUP_get0_seed,
Packit c4476c
EC_GROUP_get_seed_len, EC_GROUP_set_seed, EC_GROUP_get_degree,
Packit c4476c
EC_GROUP_check, EC_GROUP_check_discriminant, EC_GROUP_cmp,
Packit c4476c
EC_GROUP_get_basis_type, EC_GROUP_get_trinomial_basis,
Packit c4476c
EC_GROUP_get_pentanomial_basis
Packit c4476c
- Functions for manipulating EC_GROUP objects
Packit c4476c
Packit c4476c
=head1 SYNOPSIS
Packit c4476c
Packit c4476c
 #include <openssl/ec.h>
Packit c4476c
Packit c4476c
 int EC_GROUP_copy(EC_GROUP *dst, const EC_GROUP *src);
Packit c4476c
 EC_GROUP *EC_GROUP_dup(const EC_GROUP *src);
Packit c4476c
Packit c4476c
 const EC_METHOD *EC_GROUP_method_of(const EC_GROUP *group);
Packit c4476c
Packit c4476c
 int EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator,
Packit c4476c
                            const BIGNUM *order, const BIGNUM *cofactor);
Packit c4476c
 const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group);
Packit c4476c
Packit c4476c
 int EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx);
Packit c4476c
 const BIGNUM *EC_GROUP_get0_order(const EC_GROUP *group);
Packit c4476c
 int EC_GROUP_order_bits(const EC_GROUP *group);
Packit c4476c
 int EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, BN_CTX *ctx);
Packit c4476c
 const BIGNUM *EC_GROUP_get0_cofactor(const EC_GROUP *group);
Packit c4476c
Packit c4476c
 void EC_GROUP_set_curve_name(EC_GROUP *group, int nid);
Packit c4476c
 int EC_GROUP_get_curve_name(const EC_GROUP *group);
Packit c4476c
Packit c4476c
 void EC_GROUP_set_asn1_flag(EC_GROUP *group, int flag);
Packit c4476c
 int EC_GROUP_get_asn1_flag(const EC_GROUP *group);
Packit c4476c
Packit c4476c
 void EC_GROUP_set_point_conversion_form(EC_GROUP *group, point_conversion_form_t form);
Packit c4476c
 point_conversion_form_t EC_GROUP_get_point_conversion_form(const EC_GROUP *group);
Packit c4476c
Packit c4476c
 unsigned char *EC_GROUP_get0_seed(const EC_GROUP *x);
Packit c4476c
 size_t EC_GROUP_get_seed_len(const EC_GROUP *);
Packit c4476c
 size_t EC_GROUP_set_seed(EC_GROUP *, const unsigned char *, size_t len);
Packit c4476c
Packit c4476c
 int EC_GROUP_get_degree(const EC_GROUP *group);
Packit c4476c
Packit c4476c
 int EC_GROUP_check(const EC_GROUP *group, BN_CTX *ctx);
Packit c4476c
Packit c4476c
 int EC_GROUP_check_discriminant(const EC_GROUP *group, BN_CTX *ctx);
Packit c4476c
Packit c4476c
 int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx);
Packit c4476c
Packit c4476c
 int EC_GROUP_get_basis_type(const EC_GROUP *);
Packit c4476c
 int EC_GROUP_get_trinomial_basis(const EC_GROUP *, unsigned int *k);
Packit c4476c
 int EC_GROUP_get_pentanomial_basis(const EC_GROUP *, unsigned int *k1,
Packit c4476c
                                    unsigned int *k2, unsigned int *k3);
Packit c4476c
Packit c4476c
=head1 DESCRIPTION
Packit c4476c
Packit c4476c
EC_GROUP_copy() copies the curve B<src> into B<dst>. Both B<src> and B<dst> must use the same EC_METHOD.
Packit c4476c
Packit c4476c
EC_GROUP_dup() creates a new EC_GROUP object and copies the content from B<src> to the newly created
Packit c4476c
EC_GROUP object.
Packit c4476c
Packit c4476c
EC_GROUP_method_of() obtains the EC_METHOD of B<group>.
Packit c4476c
Packit c4476c
EC_GROUP_set_generator() sets curve parameters that must be agreed by all participants using the curve. These
Packit c4476c
parameters include the B<generator>, the B<order> and the B<cofactor>. The B<generator> is a well defined point on the
Packit c4476c
curve chosen for cryptographic operations. Integers used for point multiplications will be between 0 and
Packit c4476c
n-1 where n is the B<order>. The B<order> multiplied by the B<cofactor> gives the number of points on the curve.
Packit c4476c
Packit c4476c
EC_GROUP_get0_generator() returns the generator for the identified B<group>.
Packit c4476c
Packit c4476c
EC_GROUP_get_order() retrieves the order of B<group> and copies its value into
Packit c4476c
B<order>.  It fails in case B<group> is not fully initialized (i.e., its order
Packit c4476c
is not set or set to zero).
Packit c4476c
Packit c4476c
EC_GROUP_get_cofactor() retrieves the cofactor of B<group> and copies its value
Packit c4476c
into B<cofactor>. It fails in case  B<group> is not fully initialized or if the
Packit c4476c
cofactor is not set (or set to zero).
Packit c4476c
Packit c4476c
The functions EC_GROUP_set_curve_name() and EC_GROUP_get_curve_name(), set and get the NID for the curve respectively
Packit c4476c
(see L<EC_GROUP_new(3)>). If a curve does not have a NID associated with it, then EC_GROUP_get_curve_name
Packit c4476c
will return NID_undef.
Packit c4476c
Packit c4476c
The asn1_flag value is used to determine whether the curve encoding uses
Packit c4476c
explicit parameters or a named curve using an ASN1 OID: many applications only
Packit c4476c
support the latter form. If asn1_flag is B<OPENSSL_EC_NAMED_CURVE> then the
Packit c4476c
named curve form is used and the parameters must have a corresponding
Packit c4476c
named curve NID set. If asn1_flags is B<OPENSSL_EC_EXPLICIT_CURVE> the
Packit c4476c
parameters are explicitly encoded. The functions EC_GROUP_get_asn1_flag() and
Packit c4476c
EC_GROUP_set_asn1_flag() get and set the status of the asn1_flag for the curve.
Packit c4476c
Note: B<OPENSSL_EC_EXPLICIT_CURVE> was added in OpenSSL 1.1.0, for
Packit c4476c
previous versions of OpenSSL the value 0 must be used instead. Before OpenSSL
Packit c4476c
1.1.0 the default form was to use explicit parameters (meaning that
Packit c4476c
applications would have to explicitly set the named curve form) in OpenSSL
Packit c4476c
1.1.0 and later the named curve form is the default.
Packit c4476c
Packit c4476c
The point_conversion_form for a curve controls how EC_POINT data is encoded as ASN1 as defined in X9.62 (ECDSA).
Packit c4476c
point_conversion_form_t is an enum defined as follows:
Packit c4476c
Packit c4476c
 typedef enum {
Packit c4476c
        /** the point is encoded as z||x, where the octet z specifies
Packit c4476c
         *   which solution of the quadratic equation y is  */
Packit c4476c
        POINT_CONVERSION_COMPRESSED = 2,
Packit c4476c
        /** the point is encoded as z||x||y, where z is the octet 0x04  */
Packit c4476c
        POINT_CONVERSION_UNCOMPRESSED = 4,
Packit c4476c
        /** the point is encoded as z||x||y, where the octet z specifies
Packit c4476c
         *  which solution of the quadratic equation y is  */
Packit c4476c
        POINT_CONVERSION_HYBRID = 6
Packit c4476c
 } point_conversion_form_t;
Packit c4476c
Packit c4476c
For POINT_CONVERSION_UNCOMPRESSED the point is encoded as an octet signifying the UNCOMPRESSED form has been used followed by
Packit c4476c
the octets for x, followed by the octets for y.
Packit c4476c
Packit c4476c
For any given x co-ordinate for a point on a curve it is possible to derive two possible y values. For
Packit c4476c
POINT_CONVERSION_COMPRESSED the point is encoded as an octet signifying that the COMPRESSED form has been used AND which of
Packit c4476c
the two possible solutions for y has been used, followed by the octets for x.
Packit c4476c
Packit c4476c
For POINT_CONVERSION_HYBRID the point is encoded as an octet signifying the HYBRID form has been used AND which of the two
Packit c4476c
possible solutions for y has been used, followed by the octets for x, followed by the octets for y.
Packit c4476c
Packit c4476c
The functions EC_GROUP_set_point_conversion_form() and EC_GROUP_get_point_conversion_form(), set and get the point_conversion_form
Packit c4476c
for the curve respectively.
Packit c4476c
Packit c4476c
ANSI X9.62 (ECDSA standard) defines a method of generating the curve parameter b from a random number. This provides advantages
Packit c4476c
in that a parameter obtained in this way is highly unlikely to be susceptible to special purpose attacks, or have any trapdoors in it.
Packit c4476c
If the seed is present for a curve then the b parameter was generated in a verifiable fashion using that seed. The OpenSSL EC library
Packit c4476c
does 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
Packit c4476c
containing the seed that was used. The length of the memory block can be obtained using EC_GROUP_get_seed_len(). A number of the
Packit c4476c
built-in curves within the library provide seed values that can be obtained. It is also possible to set a custom seed using
Packit c4476c
EC_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
Packit c4476c
this seed value, although it will be preserved in any ASN1 based communications.
Packit c4476c
Packit c4476c
EC_GROUP_get_degree() gets the degree of the field. For Fp fields this will be the number of bits in p.  For F2^m fields this will be
Packit c4476c
the value m.
Packit c4476c
Packit c4476c
The function EC_GROUP_check_discriminant() calculates the discriminant for the curve and verifies that it is valid.
Packit c4476c
For 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
Packit c4476c
simply b. In either case for the curve to be valid the discriminant must be non zero.
Packit c4476c
Packit c4476c
The function EC_GROUP_check() performs a number of checks on a curve to verify that it is valid. Checks performed include
Packit c4476c
verifying that the discriminant is non zero; that a generator has been defined; that the generator is on the curve and has
Packit c4476c
the correct order.
Packit c4476c
Packit c4476c
EC_GROUP_cmp() compares B and B to determine whether they represent the same curve or not.
Packit c4476c
Packit c4476c
The functions EC_GROUP_get_basis_type(), EC_GROUP_get_trinomial_basis() and EC_GROUP_get_pentanomial_basis() should only be called for curves
Packit c4476c
defined over an F2^m field. Addition and multiplication operations within an F2^m field are performed using an irreducible polynomial
Packit c4476c
function f(x). This function is either a trinomial of the form:
Packit c4476c
Packit c4476c
f(x) = x^m + x^k + 1 with m > k >= 1
Packit c4476c
Packit c4476c
or a pentanomial of the form:
Packit c4476c
Packit c4476c
f(x) = x^m + x^k3 + x^k2 + x^k1 + 1 with m > k3 > k2 > k1 >= 1
Packit c4476c
Packit c4476c
The function EC_GROUP_get_basis_type() returns a NID identifying whether a trinomial or pentanomial is in use for the field. The
Packit c4476c
function 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
Packit c4476c
the 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>,
Packit c4476c
B<k2> and B<k3> respectively.
Packit c4476c
Packit c4476c
=head1 RETURN VALUES
Packit c4476c
Packit c4476c
The following functions return 1 on success or 0 on error: EC_GROUP_copy(), EC_GROUP_set_generator(), EC_GROUP_check(),
Packit c4476c
EC_GROUP_check_discriminant(), EC_GROUP_get_trinomial_basis() and EC_GROUP_get_pentanomial_basis().
Packit c4476c
Packit c4476c
EC_GROUP_dup() returns a pointer to the duplicated curve, or NULL on error.
Packit c4476c
Packit c4476c
EC_GROUP_method_of() returns the EC_METHOD implementation in use for the given curve or NULL on error.
Packit c4476c
Packit c4476c
EC_GROUP_get0_generator() returns the generator for the given curve or NULL on error.
Packit c4476c
Packit c4476c
EC_GROUP_get_order() returns 0 if the order is not set (or set to zero) for
Packit c4476c
B<group> or if copying into B<order> fails, 1 otherwise.
Packit c4476c
Packit c4476c
EC_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.
Packit c4476c
Packit c4476c
EC_GROUP_get_curve_name() returns the curve name (NID) for B<group> or will return NID_undef if no curve name is associated.
Packit c4476c
Packit c4476c
EC_GROUP_get_asn1_flag() returns the ASN1 flag for the specified B<group> .
Packit c4476c
Packit c4476c
EC_GROUP_get_point_conversion_form() returns the point_conversion_form for B<group>.
Packit c4476c
Packit c4476c
EC_GROUP_get_degree() returns the degree for B<group> or 0 if the operation is not supported by the underlying group implementation.
Packit c4476c
Packit c4476c
EC_GROUP_get0_order() returns an internal pointer to the group order.
Packit c4476c
EC_GROUP_order_bits() returns the number of bits in the group order.
Packit c4476c
EC_GROUP_get0_cofactor() returns an internal pointer to the group cofactor.
Packit c4476c
Packit c4476c
EC_GROUP_get0_seed() returns a pointer to the seed that was used to generate the parameter b, or NULL if the seed is not
Packit c4476c
specified. EC_GROUP_get_seed_len() returns the length of the seed or 0 if the seed is not specified.
Packit c4476c
Packit c4476c
EC_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
Packit c4476c
0, the return value will be 1. On error 0 is returned.
Packit c4476c
Packit c4476c
EC_GROUP_cmp() returns 0 if the curves are equal, 1 if they are not equal, or -1 on error.
Packit c4476c
Packit c4476c
EC_GROUP_get_basis_type() returns the values NID_X9_62_tpBasis or NID_X9_62_ppBasis (as defined in <openssl/obj_mac.h>) for a
Packit c4476c
trinomial or pentanomial respectively. Alternatively in the event of an error a 0 is returned.
Packit c4476c
Packit c4476c
=head1 SEE ALSO
Packit c4476c
Packit c4476c
L<crypto(7)>, L<EC_GROUP_new(3)>,
Packit c4476c
L<EC_POINT_new(3)>, 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-2017 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