3 /* ====================================================================
4 * Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
18 * 3. All advertising materials mentioning features or use of this
19 * software must display the following acknowledgment:
20 * "This product includes software developed by the OpenSSL Project
21 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
23 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
24 * endorse or promote products derived from this software without
25 * prior written permission. For written permission, please contact
26 * openssl-core@openssl.org.
28 * 5. Products derived from this software may not be called "OpenSSL"
29 * nor may "OpenSSL" appear in their names without prior written
30 * permission of the OpenSSL Project.
32 * 6. Redistributions of any form whatsoever must retain the following
34 * "This product includes software developed by the OpenSSL Project
35 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
37 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
38 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
39 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
40 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
41 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
42 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
43 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
44 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
45 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
46 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
47 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
48 * OF THE POSSIBILITY OF SUCH DAMAGE.
49 * ====================================================================
51 * This product includes cryptographic software written by Eric Young
52 * (eay@cryptsoft.com). This product includes software written by Tim
53 * Hudson (tjh@cryptsoft.com).
60 #include <openssl/bn.h>
68 POINT_CONVERSION_COMPRESSED = 2,
69 POINT_CONVERSION_UNCOMPRESSED = 4,
70 POINT_CONVERSION_HYBRID = 6
71 } point_conversion_form_t;
74 typedef struct ec_method_st EC_METHOD;
76 typedef struct ec_group_st
81 -- optional generator with associated information (order, cofactor)
82 -- optional Lim/Lee precomputation table
86 typedef struct ec_point_st EC_POINT;
89 /* EC_METHODs for curves over GF(p).
90 * EC_GFp_simple_method provides the basis for the optimized methods.
93 const EC_METHOD *EC_GFp_simple_method(void);
94 const EC_METHOD *EC_GFp_mont_method(void);
95 const EC_METHOD *EC_GFp_recp_method(void);
96 const EC_METHOD *EC_GFp_nist_method(void);
99 EC_GROUP *EC_GROUP_new(const EC_METHOD *);
100 /* We don't have types for field specifications and field elements in general.
101 * Otherwise we would declare
102 * int EC_GROUP_set(EC_GROUP *, .....);
104 int EC_GROUP_set_GFp(EC_GROUP *, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b);
105 void EC_GROUP_free(EC_GROUP *);
107 /* EC_GROUP_new_GFp() calls EC_GROUP_new() and EC_GROUP_set_GFp()
108 * after choosing an appropriate EC_METHOD */
109 EC_GROUP *EC_GROUP_new_GFp(const BIGNUM *p, const BIGNUM *a, const BIGNUM *b);
112 EC_POINT *EC_POINT_new(const EC_GROUP *);
113 void EC_POINT_free(EC_POINT *);
115 int EC_POINT_add(const EC_GROUP *, EC_POINT *r, EC_POINT *a, EC_POINT *b);
116 int EC_POINT_dbl(const EC_GROUP *, EC_POINT *r, EC_POINT *a);
118 size_t EC_POINT_point2oct(const EC_GROUP *, EC_POINT *, unsigned char *buf,
119 size_t len, point_conversion_form_t form);
120 int EC_POINT_oct2point(const EC_GROUP *, EC_POINT *, unsigned char *buf, size_t len);
123 /* TODO: scalar multiplication */
127 /* BEGIN ERROR CODES */
128 /* The following lines are auto generated by the script mkerr.pl. Any changes
129 * made after this point may be overwritten when the script is next run.
132 /* Error codes for the EC functions. */
134 /* Function codes. */