summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/ecdsa
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/ecdsa')
-rw-r--r--src/lib/libcrypto/ecdsa/ecdsa.h258
-rw-r--r--src/lib/libcrypto/ecdsa/ecs_asn1.c67
-rw-r--r--src/lib/libcrypto/ecdsa/ecs_err.c104
-rw-r--r--src/lib/libcrypto/ecdsa/ecs_lib.c259
-rw-r--r--src/lib/libcrypto/ecdsa/ecs_locl.h107
-rw-r--r--src/lib/libcrypto/ecdsa/ecs_ossl.c480
-rw-r--r--src/lib/libcrypto/ecdsa/ecs_sign.c106
-rw-r--r--src/lib/libcrypto/ecdsa/ecs_vrf.c96
8 files changed, 0 insertions, 1477 deletions
diff --git a/src/lib/libcrypto/ecdsa/ecdsa.h b/src/lib/libcrypto/ecdsa/ecdsa.h
deleted file mode 100644
index e61c539812..0000000000
--- a/src/lib/libcrypto/ecdsa/ecdsa.h
+++ /dev/null
@@ -1,258 +0,0 @@
1/* crypto/ecdsa/ecdsa.h */
2/**
3 * \file crypto/ecdsa/ecdsa.h Include file for the OpenSSL ECDSA functions
4 * \author Written by Nils Larsch for the OpenSSL project
5 */
6/* ====================================================================
7 * Copyright (c) 2000-2005 The OpenSSL Project. All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 *
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 *
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in
18 * the documentation and/or other materials provided with the
19 * distribution.
20 *
21 * 3. All advertising materials mentioning features or use of this
22 * software must display the following acknowledgment:
23 * "This product includes software developed by the OpenSSL Project
24 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
25 *
26 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
27 * endorse or promote products derived from this software without
28 * prior written permission. For written permission, please contact
29 * licensing@OpenSSL.org.
30 *
31 * 5. Products derived from this software may not be called "OpenSSL"
32 * nor may "OpenSSL" appear in their names without prior written
33 * permission of the OpenSSL Project.
34 *
35 * 6. Redistributions of any form whatsoever must retain the following
36 * acknowledgment:
37 * "This product includes software developed by the OpenSSL Project
38 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
39 *
40 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
41 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
43 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
44 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
46 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
47 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
50 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
51 * OF THE POSSIBILITY OF SUCH DAMAGE.
52 * ====================================================================
53 *
54 * This product includes cryptographic software written by Eric Young
55 * (eay@cryptsoft.com). This product includes software written by Tim
56 * Hudson (tjh@cryptsoft.com).
57 *
58 */
59#ifndef HEADER_ECDSA_H
60#define HEADER_ECDSA_H
61
62#include <openssl/opensslconf.h>
63
64#ifdef OPENSSL_NO_ECDSA
65#error ECDSA is disabled.
66#endif
67
68#include <openssl/ec.h>
69#include <openssl/ossl_typ.h>
70#ifndef OPENSSL_NO_DEPRECATED
71#include <openssl/bn.h>
72#endif
73
74#ifdef __cplusplus
75extern "C" {
76#endif
77
78typedef struct ECDSA_SIG_st
79 {
80 BIGNUM *r;
81 BIGNUM *s;
82 } ECDSA_SIG;
83
84/** Allocates and initialize a ECDSA_SIG structure
85 * \return pointer to a ECDSA_SIG structure or NULL if an error occurred
86 */
87ECDSA_SIG *ECDSA_SIG_new(void);
88
89/** frees a ECDSA_SIG structure
90 * \param sig pointer to the ECDSA_SIG structure
91 */
92void ECDSA_SIG_free(ECDSA_SIG *sig);
93
94/** DER encode content of ECDSA_SIG object (note: this function modifies *pp
95 * (*pp += length of the DER encoded signature)).
96 * \param sig pointer to the ECDSA_SIG object
97 * \param pp pointer to a unsigned char pointer for the output or NULL
98 * \return the length of the DER encoded ECDSA_SIG object or 0
99 */
100int i2d_ECDSA_SIG(const ECDSA_SIG *sig, unsigned char **pp);
101
102/** Decodes a DER encoded ECDSA signature (note: this function changes *pp
103 * (*pp += len)).
104 * \param sig pointer to ECDSA_SIG pointer (may be NULL)
105 * \param pp memory buffer with the DER encoded signature
106 * \param len length of the buffer
107 * \return pointer to the decoded ECDSA_SIG structure (or NULL)
108 */
109ECDSA_SIG *d2i_ECDSA_SIG(ECDSA_SIG **sig, const unsigned char **pp, long len);
110
111/** Computes the ECDSA signature of the given hash value using
112 * the supplied private key and returns the created signature.
113 * \param dgst pointer to the hash value
114 * \param dgst_len length of the hash value
115 * \param eckey EC_KEY object containing a private EC key
116 * \return pointer to a ECDSA_SIG structure or NULL if an error occurred
117 */
118ECDSA_SIG *ECDSA_do_sign(const unsigned char *dgst,int dgst_len,EC_KEY *eckey);
119
120/** Computes ECDSA signature of a given hash value using the supplied
121 * private key (note: sig must point to ECDSA_size(eckey) bytes of memory).
122 * \param dgst pointer to the hash value to sign
123 * \param dgstlen length of the hash value
124 * \param kinv BIGNUM with a pre-computed inverse k (optional)
125 * \param rp BIGNUM with a pre-computed rp value (optioanl),
126 * see ECDSA_sign_setup
127 * \param eckey EC_KEY object containing a private EC key
128 * \return pointer to a ECDSA_SIG structure or NULL if an error occurred
129 */
130ECDSA_SIG *ECDSA_do_sign_ex(const unsigned char *dgst, int dgstlen,
131 const BIGNUM *kinv, const BIGNUM *rp, EC_KEY *eckey);
132
133/** Verifies that the supplied signature is a valid ECDSA
134 * signature of the supplied hash value using the supplied public key.
135 * \param dgst pointer to the hash value
136 * \param dgst_len length of the hash value
137 * \param sig ECDSA_SIG structure
138 * \param eckey EC_KEY object containing a public EC key
139 * \return 1 if the signature is valid, 0 if the signature is invalid
140 * and -1 on error
141 */
142int ECDSA_do_verify(const unsigned char *dgst, int dgst_len,
143 const ECDSA_SIG *sig, EC_KEY* eckey);
144
145const ECDSA_METHOD *ECDSA_OpenSSL(void);
146
147/** Sets the default ECDSA method
148 * \param meth new default ECDSA_METHOD
149 */
150void ECDSA_set_default_method(const ECDSA_METHOD *meth);
151
152/** Returns the default ECDSA method
153 * \return pointer to ECDSA_METHOD structure containing the default method
154 */
155const ECDSA_METHOD *ECDSA_get_default_method(void);
156
157/** Sets method to be used for the ECDSA operations
158 * \param eckey EC_KEY object
159 * \param meth new method
160 * \return 1 on success and 0 otherwise
161 */
162int ECDSA_set_method(EC_KEY *eckey, const ECDSA_METHOD *meth);
163
164/** Returns the maximum length of the DER encoded signature
165 * \param eckey EC_KEY object
166 * \return numbers of bytes required for the DER encoded signature
167 */
168int ECDSA_size(const EC_KEY *eckey);
169
170/** Precompute parts of the signing operation
171 * \param eckey EC_KEY object containing a private EC key
172 * \param ctx BN_CTX object (optional)
173 * \param kinv BIGNUM pointer for the inverse of k
174 * \param rp BIGNUM pointer for x coordinate of k * generator
175 * \return 1 on success and 0 otherwise
176 */
177int ECDSA_sign_setup(EC_KEY *eckey, BN_CTX *ctx, BIGNUM **kinv,
178 BIGNUM **rp);
179
180/** Computes ECDSA signature of a given hash value using the supplied
181 * private key (note: sig must point to ECDSA_size(eckey) bytes of memory).
182 * \param type this parameter is ignored
183 * \param dgst pointer to the hash value to sign
184 * \param dgstlen length of the hash value
185 * \param sig memory for the DER encoded created signature
186 * \param siglen pointer to the length of the returned signature
187 * \param eckey EC_KEY object containing a private EC key
188 * \return 1 on success and 0 otherwise
189 */
190int ECDSA_sign(int type, const unsigned char *dgst, int dgstlen,
191 unsigned char *sig, unsigned int *siglen, EC_KEY *eckey);
192
193
194/** Computes ECDSA signature of a given hash value using the supplied
195 * private key (note: sig must point to ECDSA_size(eckey) bytes of memory).
196 * \param type this parameter is ignored
197 * \param dgst pointer to the hash value to sign
198 * \param dgstlen length of the hash value
199 * \param sig buffer to hold the DER encoded signature
200 * \param siglen pointer to the length of the returned signature
201 * \param kinv BIGNUM with a pre-computed inverse k (optional)
202 * \param rp BIGNUM with a pre-computed rp value (optioanl),
203 * see ECDSA_sign_setup
204 * \param eckey EC_KEY object containing a private EC key
205 * \return 1 on success and 0 otherwise
206 */
207int ECDSA_sign_ex(int type, const unsigned char *dgst, int dgstlen,
208 unsigned char *sig, unsigned int *siglen, const BIGNUM *kinv,
209 const BIGNUM *rp, EC_KEY *eckey);
210
211/** Verifies that the given signature is valid ECDSA signature
212 * of the supplied hash value using the specified public key.
213 * \param type this parameter is ignored
214 * \param dgst pointer to the hash value
215 * \param dgstlen length of the hash value
216 * \param sig pointer to the DER encoded signature
217 * \param siglen length of the DER encoded signature
218 * \param eckey EC_KEY object containing a public EC key
219 * \return 1 if the signature is valid, 0 if the signature is invalid
220 * and -1 on error
221 */
222int ECDSA_verify(int type, const unsigned char *dgst, int dgstlen,
223 const unsigned char *sig, int siglen, EC_KEY *eckey);
224
225/* the standard ex_data functions */
226int ECDSA_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new
227 *new_func, CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func);
228int ECDSA_set_ex_data(EC_KEY *d, int idx, void *arg);
229void *ECDSA_get_ex_data(EC_KEY *d, int idx);
230
231
232/* BEGIN ERROR CODES */
233/* The following lines are auto generated by the script mkerr.pl. Any changes
234 * made after this point may be overwritten when the script is next run.
235 */
236void ERR_load_ECDSA_strings(void);
237
238/* Error codes for the ECDSA functions. */
239
240/* Function codes. */
241#define ECDSA_F_ECDSA_DATA_NEW_METHOD 100
242#define ECDSA_F_ECDSA_DO_SIGN 101
243#define ECDSA_F_ECDSA_DO_VERIFY 102
244#define ECDSA_F_ECDSA_SIGN_SETUP 103
245
246/* Reason codes. */
247#define ECDSA_R_BAD_SIGNATURE 100
248#define ECDSA_R_DATA_TOO_LARGE_FOR_KEY_SIZE 101
249#define ECDSA_R_ERR_EC_LIB 102
250#define ECDSA_R_MISSING_PARAMETERS 103
251#define ECDSA_R_NEED_NEW_SETUP_VALUES 106
252#define ECDSA_R_RANDOM_NUMBER_GENERATION_FAILED 104
253#define ECDSA_R_SIGNATURE_MALLOC_FAILED 105
254
255#ifdef __cplusplus
256}
257#endif
258#endif
diff --git a/src/lib/libcrypto/ecdsa/ecs_asn1.c b/src/lib/libcrypto/ecdsa/ecs_asn1.c
deleted file mode 100644
index b295489400..0000000000
--- a/src/lib/libcrypto/ecdsa/ecs_asn1.c
+++ /dev/null
@@ -1,67 +0,0 @@
1/* crypto/ecdsa/ecs_asn1.c */
2/* ====================================================================
3 * Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 *
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in
14 * the documentation and/or other materials provided with the
15 * distribution.
16 *
17 * 3. All advertising materials mentioning features or use of this
18 * software must display the following acknowledgment:
19 * "This product includes software developed by the OpenSSL Project
20 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
21 *
22 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
23 * endorse or promote products derived from this software without
24 * prior written permission. For written permission, please contact
25 * licensing@OpenSSL.org.
26 *
27 * 5. Products derived from this software may not be called "OpenSSL"
28 * nor may "OpenSSL" appear in their names without prior written
29 * permission of the OpenSSL Project.
30 *
31 * 6. Redistributions of any form whatsoever must retain the following
32 * acknowledgment:
33 * "This product includes software developed by the OpenSSL Project
34 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
35 *
36 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
37 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
38 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
39 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
40 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
41 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
42 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
43 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
44 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
45 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
46 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
47 * OF THE POSSIBILITY OF SUCH DAMAGE.
48 * ====================================================================
49 *
50 * This product includes cryptographic software written by Eric Young
51 * (eay@cryptsoft.com). This product includes software written by Tim
52 * Hudson (tjh@cryptsoft.com).
53 *
54 */
55
56#include "ecs_locl.h"
57#include <openssl/err.h>
58#include <openssl/asn1t.h>
59
60ASN1_SEQUENCE(ECDSA_SIG) = {
61 ASN1_SIMPLE(ECDSA_SIG, r, CBIGNUM),
62 ASN1_SIMPLE(ECDSA_SIG, s, CBIGNUM)
63} ASN1_SEQUENCE_END(ECDSA_SIG)
64
65DECLARE_ASN1_FUNCTIONS_const(ECDSA_SIG)
66DECLARE_ASN1_ENCODE_FUNCTIONS_const(ECDSA_SIG, ECDSA_SIG)
67IMPLEMENT_ASN1_FUNCTIONS_const(ECDSA_SIG)
diff --git a/src/lib/libcrypto/ecdsa/ecs_err.c b/src/lib/libcrypto/ecdsa/ecs_err.c
deleted file mode 100644
index 98e38d537f..0000000000
--- a/src/lib/libcrypto/ecdsa/ecs_err.c
+++ /dev/null
@@ -1,104 +0,0 @@
1/* crypto/ecdsa/ecs_err.c */
2/* ====================================================================
3 * Copyright (c) 1999-2006 The OpenSSL Project. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 *
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in
14 * the documentation and/or other materials provided with the
15 * distribution.
16 *
17 * 3. All advertising materials mentioning features or use of this
18 * software must display the following acknowledgment:
19 * "This product includes software developed by the OpenSSL Project
20 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
21 *
22 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
23 * endorse or promote products derived from this software without
24 * prior written permission. For written permission, please contact
25 * openssl-core@OpenSSL.org.
26 *
27 * 5. Products derived from this software may not be called "OpenSSL"
28 * nor may "OpenSSL" appear in their names without prior written
29 * permission of the OpenSSL Project.
30 *
31 * 6. Redistributions of any form whatsoever must retain the following
32 * acknowledgment:
33 * "This product includes software developed by the OpenSSL Project
34 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
35 *
36 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
37 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
38 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
39 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
40 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
41 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
42 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
43 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
44 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
45 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
46 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
47 * OF THE POSSIBILITY OF SUCH DAMAGE.
48 * ====================================================================
49 *
50 * This product includes cryptographic software written by Eric Young
51 * (eay@cryptsoft.com). This product includes software written by Tim
52 * Hudson (tjh@cryptsoft.com).
53 *
54 */
55
56/* NOTE: this file was auto generated by the mkerr.pl script: any changes
57 * made to it will be overwritten when the script next updates this file,
58 * only reason strings will be preserved.
59 */
60
61#include <stdio.h>
62#include <openssl/err.h>
63#include <openssl/ecdsa.h>
64
65/* BEGIN ERROR CODES */
66#ifndef OPENSSL_NO_ERR
67
68#define ERR_FUNC(func) ERR_PACK(ERR_LIB_ECDSA,func,0)
69#define ERR_REASON(reason) ERR_PACK(ERR_LIB_ECDSA,0,reason)
70
71static ERR_STRING_DATA ECDSA_str_functs[]=
72 {
73{ERR_FUNC(ECDSA_F_ECDSA_DATA_NEW_METHOD), "ECDSA_DATA_NEW_METHOD"},
74{ERR_FUNC(ECDSA_F_ECDSA_DO_SIGN), "ECDSA_do_sign"},
75{ERR_FUNC(ECDSA_F_ECDSA_DO_VERIFY), "ECDSA_do_verify"},
76{ERR_FUNC(ECDSA_F_ECDSA_SIGN_SETUP), "ECDSA_sign_setup"},
77{0,NULL}
78 };
79
80static ERR_STRING_DATA ECDSA_str_reasons[]=
81 {
82{ERR_REASON(ECDSA_R_BAD_SIGNATURE) ,"bad signature"},
83{ERR_REASON(ECDSA_R_DATA_TOO_LARGE_FOR_KEY_SIZE),"data too large for key size"},
84{ERR_REASON(ECDSA_R_ERR_EC_LIB) ,"err ec lib"},
85{ERR_REASON(ECDSA_R_MISSING_PARAMETERS) ,"missing parameters"},
86{ERR_REASON(ECDSA_R_NEED_NEW_SETUP_VALUES),"need new setup values"},
87{ERR_REASON(ECDSA_R_RANDOM_NUMBER_GENERATION_FAILED),"random number generation failed"},
88{ERR_REASON(ECDSA_R_SIGNATURE_MALLOC_FAILED),"signature malloc failed"},
89{0,NULL}
90 };
91
92#endif
93
94void ERR_load_ECDSA_strings(void)
95 {
96#ifndef OPENSSL_NO_ERR
97
98 if (ERR_func_error_string(ECDSA_str_functs[0].error) == NULL)
99 {
100 ERR_load_strings(0,ECDSA_str_functs);
101 ERR_load_strings(0,ECDSA_str_reasons);
102 }
103#endif
104 }
diff --git a/src/lib/libcrypto/ecdsa/ecs_lib.c b/src/lib/libcrypto/ecdsa/ecs_lib.c
deleted file mode 100644
index 2ebae3aa27..0000000000
--- a/src/lib/libcrypto/ecdsa/ecs_lib.c
+++ /dev/null
@@ -1,259 +0,0 @@
1/* crypto/ecdsa/ecs_lib.c */
2/* ====================================================================
3 * Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 *
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in
14 * the documentation and/or other materials provided with the
15 * distribution.
16 *
17 * 3. All advertising materials mentioning features or use of this
18 * software must display the following acknowledgment:
19 * "This product includes software developed by the OpenSSL Project
20 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
21 *
22 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
23 * endorse or promote products derived from this software without
24 * prior written permission. For written permission, please contact
25 * openssl-core@OpenSSL.org.
26 *
27 * 5. Products derived from this software may not be called "OpenSSL"
28 * nor may "OpenSSL" appear in their names without prior written
29 * permission of the OpenSSL Project.
30 *
31 * 6. Redistributions of any form whatsoever must retain the following
32 * acknowledgment:
33 * "This product includes software developed by the OpenSSL Project
34 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
35 *
36 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
37 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
38 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
39 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
40 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
41 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
42 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
43 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
44 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
45 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
46 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
47 * OF THE POSSIBILITY OF SUCH DAMAGE.
48 * ====================================================================
49 *
50 * This product includes cryptographic software written by Eric Young
51 * (eay@cryptsoft.com). This product includes software written by Tim
52 * Hudson (tjh@cryptsoft.com).
53 *
54 */
55
56#include <string.h>
57#include "ecs_locl.h"
58#ifndef OPENSSL_NO_ENGINE
59#include <openssl/engine.h>
60#endif
61#include <openssl/err.h>
62#include <openssl/bn.h>
63
64const char ECDSA_version[]="ECDSA" OPENSSL_VERSION_PTEXT;
65
66static const ECDSA_METHOD *default_ECDSA_method = NULL;
67
68static void *ecdsa_data_new(void);
69static void *ecdsa_data_dup(void *);
70static void ecdsa_data_free(void *);
71
72void ECDSA_set_default_method(const ECDSA_METHOD *meth)
73{
74 default_ECDSA_method = meth;
75}
76
77const ECDSA_METHOD *ECDSA_get_default_method(void)
78{
79 if(!default_ECDSA_method)
80 default_ECDSA_method = ECDSA_OpenSSL();
81 return default_ECDSA_method;
82}
83
84int ECDSA_set_method(EC_KEY *eckey, const ECDSA_METHOD *meth)
85{
86 ECDSA_DATA *ecdsa;
87
88 ecdsa = ecdsa_check(eckey);
89
90 if (ecdsa == NULL)
91 return 0;
92
93#ifndef OPENSSL_NO_ENGINE
94 if (ecdsa->engine)
95 {
96 ENGINE_finish(ecdsa->engine);
97 ecdsa->engine = NULL;
98 }
99#endif
100 ecdsa->meth = meth;
101
102 return 1;
103}
104
105static ECDSA_DATA *ECDSA_DATA_new_method(ENGINE *engine)
106{
107 ECDSA_DATA *ret;
108
109 ret=(ECDSA_DATA *)OPENSSL_malloc(sizeof(ECDSA_DATA));
110 if (ret == NULL)
111 {
112 ECDSAerr(ECDSA_F_ECDSA_DATA_NEW_METHOD, ERR_R_MALLOC_FAILURE);
113 return(NULL);
114 }
115
116 ret->init = NULL;
117
118 ret->meth = ECDSA_get_default_method();
119 ret->engine = engine;
120#ifndef OPENSSL_NO_ENGINE
121 if (!ret->engine)
122 ret->engine = ENGINE_get_default_ECDSA();
123 if (ret->engine)
124 {
125 ret->meth = ENGINE_get_ECDSA(ret->engine);
126 if (!ret->meth)
127 {
128 ECDSAerr(ECDSA_F_ECDSA_DATA_NEW_METHOD, ERR_R_ENGINE_LIB);
129 ENGINE_finish(ret->engine);
130 OPENSSL_free(ret);
131 return NULL;
132 }
133 }
134#endif
135
136 ret->flags = ret->meth->flags;
137 CRYPTO_new_ex_data(CRYPTO_EX_INDEX_ECDSA, ret, &ret->ex_data);
138#if 0
139 if ((ret->meth->init != NULL) && !ret->meth->init(ret))
140 {
141 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_ECDSA, ret, &ret->ex_data);
142 OPENSSL_free(ret);
143 ret=NULL;
144 }
145#endif
146 return(ret);
147}
148
149static void *ecdsa_data_new(void)
150{
151 return (void *)ECDSA_DATA_new_method(NULL);
152}
153
154static void *ecdsa_data_dup(void *data)
155{
156 ECDSA_DATA *r = (ECDSA_DATA *)data;
157
158 /* XXX: dummy operation */
159 if (r == NULL)
160 return NULL;
161
162 return ecdsa_data_new();
163}
164
165static void ecdsa_data_free(void *data)
166{
167 ECDSA_DATA *r = (ECDSA_DATA *)data;
168
169#ifndef OPENSSL_NO_ENGINE
170 if (r->engine)
171 ENGINE_finish(r->engine);
172#endif
173 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_ECDSA, r, &r->ex_data);
174
175 OPENSSL_cleanse((void *)r, sizeof(ECDSA_DATA));
176
177 OPENSSL_free(r);
178}
179
180ECDSA_DATA *ecdsa_check(EC_KEY *key)
181{
182 ECDSA_DATA *ecdsa_data;
183
184 void *data = EC_KEY_get_key_method_data(key, ecdsa_data_dup,
185 ecdsa_data_free, ecdsa_data_free);
186 if (data == NULL)
187 {
188 ecdsa_data = (ECDSA_DATA *)ecdsa_data_new();
189 if (ecdsa_data == NULL)
190 return NULL;
191 EC_KEY_insert_key_method_data(key, (void *)ecdsa_data,
192 ecdsa_data_dup, ecdsa_data_free, ecdsa_data_free);
193 }
194 else
195 ecdsa_data = (ECDSA_DATA *)data;
196
197
198 return ecdsa_data;
199}
200
201int ECDSA_size(const EC_KEY *r)
202{
203 int ret,i;
204 ASN1_INTEGER bs;
205 BIGNUM *order=NULL;
206 unsigned char buf[4];
207 const EC_GROUP *group;
208
209 if (r == NULL)
210 return 0;
211 group = EC_KEY_get0_group(r);
212 if (group == NULL)
213 return 0;
214
215 if ((order = BN_new()) == NULL) return 0;
216 if (!EC_GROUP_get_order(group,order,NULL))
217 {
218 BN_clear_free(order);
219 return 0;
220 }
221 i=BN_num_bits(order);
222 bs.length=(i+7)/8;
223 bs.data=buf;
224 bs.type=V_ASN1_INTEGER;
225 /* If the top bit is set the asn1 encoding is 1 larger. */
226 buf[0]=0xff;
227
228 i=i2d_ASN1_INTEGER(&bs,NULL);
229 i+=i; /* r and s */
230 ret=ASN1_object_size(1,i,V_ASN1_SEQUENCE);
231 BN_clear_free(order);
232 return(ret);
233}
234
235
236int ECDSA_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
237 CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func)
238{
239 return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_ECDSA, argl, argp,
240 new_func, dup_func, free_func);
241}
242
243int ECDSA_set_ex_data(EC_KEY *d, int idx, void *arg)
244{
245 ECDSA_DATA *ecdsa;
246 ecdsa = ecdsa_check(d);
247 if (ecdsa == NULL)
248 return 0;
249 return(CRYPTO_set_ex_data(&ecdsa->ex_data,idx,arg));
250}
251
252void *ECDSA_get_ex_data(EC_KEY *d, int idx)
253{
254 ECDSA_DATA *ecdsa;
255 ecdsa = ecdsa_check(d);
256 if (ecdsa == NULL)
257 return NULL;
258 return(CRYPTO_get_ex_data(&ecdsa->ex_data,idx));
259}
diff --git a/src/lib/libcrypto/ecdsa/ecs_locl.h b/src/lib/libcrypto/ecdsa/ecs_locl.h
deleted file mode 100644
index 3a69a840e2..0000000000
--- a/src/lib/libcrypto/ecdsa/ecs_locl.h
+++ /dev/null
@@ -1,107 +0,0 @@
1/* crypto/ecdsa/ecs_locl.h */
2/*
3 * Written by Nils Larsch for the OpenSSL project
4 */
5/* ====================================================================
6 * Copyright (c) 2000-2005 The OpenSSL Project. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 *
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 *
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
18 * distribution.
19 *
20 * 3. All advertising materials mentioning features or use of this
21 * software must display the following acknowledgment:
22 * "This product includes software developed by the OpenSSL Project
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24 *
25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 * endorse or promote products derived from this software without
27 * prior written permission. For written permission, please contact
28 * licensing@OpenSSL.org.
29 *
30 * 5. Products derived from this software may not be called "OpenSSL"
31 * nor may "OpenSSL" appear in their names without prior written
32 * permission of the OpenSSL Project.
33 *
34 * 6. Redistributions of any form whatsoever must retain the following
35 * acknowledgment:
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38 *
39 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 * OF THE POSSIBILITY OF SUCH DAMAGE.
51 * ====================================================================
52 *
53 * This product includes cryptographic software written by Eric Young
54 * (eay@cryptsoft.com). This product includes software written by Tim
55 * Hudson (tjh@cryptsoft.com).
56 *
57 */
58
59#ifndef HEADER_ECS_LOCL_H
60#define HEADER_ECS_LOCL_H
61
62#include <openssl/ecdsa.h>
63
64#ifdef __cplusplus
65extern "C" {
66#endif
67
68struct ecdsa_method
69 {
70 const char *name;
71 ECDSA_SIG *(*ecdsa_do_sign)(const unsigned char *dgst, int dgst_len,
72 const BIGNUM *inv, const BIGNUM *rp, EC_KEY *eckey);
73 int (*ecdsa_sign_setup)(EC_KEY *eckey, BN_CTX *ctx, BIGNUM **kinv,
74 BIGNUM **r);
75 int (*ecdsa_do_verify)(const unsigned char *dgst, int dgst_len,
76 const ECDSA_SIG *sig, EC_KEY *eckey);
77#if 0
78 int (*init)(EC_KEY *eckey);
79 int (*finish)(EC_KEY *eckey);
80#endif
81 int flags;
82 char *app_data;
83 };
84
85typedef struct ecdsa_data_st {
86 /* EC_KEY_METH_DATA part */
87 int (*init)(EC_KEY *);
88 /* method (ECDSA) specific part */
89 ENGINE *engine;
90 int flags;
91 const ECDSA_METHOD *meth;
92 CRYPTO_EX_DATA ex_data;
93} ECDSA_DATA;
94
95/** ecdsa_check
96 * checks whether ECKEY->meth_data is a pointer to a ECDSA_DATA structure
97 * and if not it removes the old meth_data and creates a ECDSA_DATA structure.
98 * \param eckey pointer to a EC_KEY object
99 * \return pointer to a ECDSA_DATA structure
100 */
101ECDSA_DATA *ecdsa_check(EC_KEY *eckey);
102
103#ifdef __cplusplus
104}
105#endif
106
107#endif /* HEADER_ECS_LOCL_H */
diff --git a/src/lib/libcrypto/ecdsa/ecs_ossl.c b/src/lib/libcrypto/ecdsa/ecs_ossl.c
deleted file mode 100644
index 1bbf328de5..0000000000
--- a/src/lib/libcrypto/ecdsa/ecs_ossl.c
+++ /dev/null
@@ -1,480 +0,0 @@
1/* crypto/ecdsa/ecs_ossl.c */
2/*
3 * Written by Nils Larsch for the OpenSSL project
4 */
5/* ====================================================================
6 * Copyright (c) 1998-2004 The OpenSSL Project. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 *
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 *
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
18 * distribution.
19 *
20 * 3. All advertising materials mentioning features or use of this
21 * software must display the following acknowledgment:
22 * "This product includes software developed by the OpenSSL Project
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24 *
25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 * endorse or promote products derived from this software without
27 * prior written permission. For written permission, please contact
28 * openssl-core@OpenSSL.org.
29 *
30 * 5. Products derived from this software may not be called "OpenSSL"
31 * nor may "OpenSSL" appear in their names without prior written
32 * permission of the OpenSSL Project.
33 *
34 * 6. Redistributions of any form whatsoever must retain the following
35 * acknowledgment:
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38 *
39 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 * OF THE POSSIBILITY OF SUCH DAMAGE.
51 * ====================================================================
52 *
53 * This product includes cryptographic software written by Eric Young
54 * (eay@cryptsoft.com). This product includes software written by Tim
55 * Hudson (tjh@cryptsoft.com).
56 *
57 */
58
59#include "ecs_locl.h"
60#include <openssl/err.h>
61#include <openssl/obj_mac.h>
62#include <openssl/bn.h>
63
64static ECDSA_SIG *ecdsa_do_sign(const unsigned char *dgst, int dlen,
65 const BIGNUM *, const BIGNUM *, EC_KEY *eckey);
66static int ecdsa_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in, BIGNUM **kinvp,
67 BIGNUM **rp);
68static int ecdsa_do_verify(const unsigned char *dgst, int dgst_len,
69 const ECDSA_SIG *sig, EC_KEY *eckey);
70
71static ECDSA_METHOD openssl_ecdsa_meth = {
72 "OpenSSL ECDSA method",
73 ecdsa_do_sign,
74 ecdsa_sign_setup,
75 ecdsa_do_verify,
76#if 0
77 NULL, /* init */
78 NULL, /* finish */
79#endif
80 0, /* flags */
81 NULL /* app_data */
82};
83
84const ECDSA_METHOD *ECDSA_OpenSSL(void)
85{
86 return &openssl_ecdsa_meth;
87}
88
89static int ecdsa_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in, BIGNUM **kinvp,
90 BIGNUM **rp)
91{
92 BN_CTX *ctx = NULL;
93 BIGNUM *k = NULL, *r = NULL, *order = NULL, *X = NULL;
94 EC_POINT *tmp_point=NULL;
95 const EC_GROUP *group;
96 int ret = 0;
97
98 if (eckey == NULL || (group = EC_KEY_get0_group(eckey)) == NULL)
99 {
100 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_PASSED_NULL_PARAMETER);
101 return 0;
102 }
103
104 if (ctx_in == NULL)
105 {
106 if ((ctx = BN_CTX_new()) == NULL)
107 {
108 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP,ERR_R_MALLOC_FAILURE);
109 return 0;
110 }
111 }
112 else
113 ctx = ctx_in;
114
115 k = BN_new(); /* this value is later returned in *kinvp */
116 r = BN_new(); /* this value is later returned in *rp */
117 order = BN_new();
118 X = BN_new();
119 if (!k || !r || !order || !X)
120 {
121 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_MALLOC_FAILURE);
122 goto err;
123 }
124 if ((tmp_point = EC_POINT_new(group)) == NULL)
125 {
126 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_EC_LIB);
127 goto err;
128 }
129 if (!EC_GROUP_get_order(group, order, ctx))
130 {
131 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_EC_LIB);
132 goto err;
133 }
134
135 do
136 {
137 /* get random k */
138 do
139 if (!BN_rand_range(k, order))
140 {
141 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP,
142 ECDSA_R_RANDOM_NUMBER_GENERATION_FAILED);
143 goto err;
144 }
145 while (BN_is_zero(k));
146
147 /* We do not want timing information to leak the length of k,
148 * so we compute G*k using an equivalent scalar of fixed
149 * bit-length. */
150
151 if (!BN_add(k, k, order)) goto err;
152 if (BN_num_bits(k) <= BN_num_bits(order))
153 if (!BN_add(k, k, order)) goto err;
154
155 /* compute r the x-coordinate of generator * k */
156 if (!EC_POINT_mul(group, tmp_point, k, NULL, NULL, ctx))
157 {
158 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_EC_LIB);
159 goto err;
160 }
161 if (EC_METHOD_get_field_type(EC_GROUP_method_of(group)) == NID_X9_62_prime_field)
162 {
163 if (!EC_POINT_get_affine_coordinates_GFp(group,
164 tmp_point, X, NULL, ctx))
165 {
166 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP,ERR_R_EC_LIB);
167 goto err;
168 }
169 }
170 else /* NID_X9_62_characteristic_two_field */
171 {
172 if (!EC_POINT_get_affine_coordinates_GF2m(group,
173 tmp_point, X, NULL, ctx))
174 {
175 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP,ERR_R_EC_LIB);
176 goto err;
177 }
178 }
179 if (!BN_nnmod(r, X, order, ctx))
180 {
181 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_BN_LIB);
182 goto err;
183 }
184 }
185 while (BN_is_zero(r));
186
187 /* compute the inverse of k */
188 if (!BN_mod_inverse(k, k, order, ctx))
189 {
190 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_BN_LIB);
191 goto err;
192 }
193 /* clear old values if necessary */
194 if (*rp != NULL)
195 BN_clear_free(*rp);
196 if (*kinvp != NULL)
197 BN_clear_free(*kinvp);
198 /* save the pre-computed values */
199 *rp = r;
200 *kinvp = k;
201 ret = 1;
202err:
203 if (!ret)
204 {
205 if (k != NULL) BN_clear_free(k);
206 if (r != NULL) BN_clear_free(r);
207 }
208 if (ctx_in == NULL)
209 BN_CTX_free(ctx);
210 if (order != NULL)
211 BN_free(order);
212 if (tmp_point != NULL)
213 EC_POINT_free(tmp_point);
214 if (X)
215 BN_clear_free(X);
216 return(ret);
217}
218
219
220static ECDSA_SIG *ecdsa_do_sign(const unsigned char *dgst, int dgst_len,
221 const BIGNUM *in_kinv, const BIGNUM *in_r, EC_KEY *eckey)
222{
223 int ok = 0, i;
224 BIGNUM *kinv=NULL, *s, *m=NULL,*tmp=NULL,*order=NULL;
225 const BIGNUM *ckinv;
226 BN_CTX *ctx = NULL;
227 const EC_GROUP *group;
228 ECDSA_SIG *ret;
229 ECDSA_DATA *ecdsa;
230 const BIGNUM *priv_key;
231
232 ecdsa = ecdsa_check(eckey);
233 group = EC_KEY_get0_group(eckey);
234 priv_key = EC_KEY_get0_private_key(eckey);
235
236 if (group == NULL || priv_key == NULL || ecdsa == NULL)
237 {
238 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_PASSED_NULL_PARAMETER);
239 return NULL;
240 }
241
242 ret = ECDSA_SIG_new();
243 if (!ret)
244 {
245 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_MALLOC_FAILURE);
246 return NULL;
247 }
248 s = ret->s;
249
250 if ((ctx = BN_CTX_new()) == NULL || (order = BN_new()) == NULL ||
251 (tmp = BN_new()) == NULL || (m = BN_new()) == NULL)
252 {
253 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_MALLOC_FAILURE);
254 goto err;
255 }
256
257 if (!EC_GROUP_get_order(group, order, ctx))
258 {
259 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_EC_LIB);
260 goto err;
261 }
262 i = BN_num_bits(order);
263 /* Need to truncate digest if it is too long: first truncate whole
264 * bytes.
265 */
266 if (8 * dgst_len > i)
267 dgst_len = (i + 7)/8;
268 if (!BN_bin2bn(dgst, dgst_len, m))
269 {
270 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_BN_LIB);
271 goto err;
272 }
273 /* If still too long truncate remaining bits with a shift */
274 if ((8 * dgst_len > i) && !BN_rshift(m, m, 8 - (i & 0x7)))
275 {
276 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_BN_LIB);
277 goto err;
278 }
279 do
280 {
281 if (in_kinv == NULL || in_r == NULL)
282 {
283 if (!ECDSA_sign_setup(eckey, ctx, &kinv, &ret->r))
284 {
285 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN,ERR_R_ECDSA_LIB);
286 goto err;
287 }
288 ckinv = kinv;
289 }
290 else
291 {
292 ckinv = in_kinv;
293 if (BN_copy(ret->r, in_r) == NULL)
294 {
295 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_MALLOC_FAILURE);
296 goto err;
297 }
298 }
299
300 if (!BN_mod_mul(tmp, priv_key, ret->r, order, ctx))
301 {
302 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_BN_LIB);
303 goto err;
304 }
305 if (!BN_mod_add_quick(s, tmp, m, order))
306 {
307 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_BN_LIB);
308 goto err;
309 }
310 if (!BN_mod_mul(s, s, ckinv, order, ctx))
311 {
312 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_BN_LIB);
313 goto err;
314 }
315 if (BN_is_zero(s))
316 {
317 /* if kinv and r have been supplied by the caller
318 * don't to generate new kinv and r values */
319 if (in_kinv != NULL && in_r != NULL)
320 {
321 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ECDSA_R_NEED_NEW_SETUP_VALUES);
322 goto err;
323 }
324 }
325 else
326 /* s != 0 => we have a valid signature */
327 break;
328 }
329 while (1);
330
331 ok = 1;
332err:
333 if (!ok)
334 {
335 ECDSA_SIG_free(ret);
336 ret = NULL;
337 }
338 if (ctx)
339 BN_CTX_free(ctx);
340 if (m)
341 BN_clear_free(m);
342 if (tmp)
343 BN_clear_free(tmp);
344 if (order)
345 BN_free(order);
346 if (kinv)
347 BN_clear_free(kinv);
348 return ret;
349}
350
351static int ecdsa_do_verify(const unsigned char *dgst, int dgst_len,
352 const ECDSA_SIG *sig, EC_KEY *eckey)
353{
354 int ret = -1, i;
355 BN_CTX *ctx;
356 BIGNUM *order, *u1, *u2, *m, *X;
357 EC_POINT *point = NULL;
358 const EC_GROUP *group;
359 const EC_POINT *pub_key;
360
361 /* check input values */
362 if (eckey == NULL || (group = EC_KEY_get0_group(eckey)) == NULL ||
363 (pub_key = EC_KEY_get0_public_key(eckey)) == NULL || sig == NULL)
364 {
365 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ECDSA_R_MISSING_PARAMETERS);
366 return -1;
367 }
368
369 ctx = BN_CTX_new();
370 if (!ctx)
371 {
372 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_MALLOC_FAILURE);
373 return -1;
374 }
375 BN_CTX_start(ctx);
376 order = BN_CTX_get(ctx);
377 u1 = BN_CTX_get(ctx);
378 u2 = BN_CTX_get(ctx);
379 m = BN_CTX_get(ctx);
380 X = BN_CTX_get(ctx);
381 if (!X)
382 {
383 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
384 goto err;
385 }
386
387 if (!EC_GROUP_get_order(group, order, ctx))
388 {
389 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_EC_LIB);
390 goto err;
391 }
392
393 if (BN_is_zero(sig->r) || BN_is_negative(sig->r) ||
394 BN_ucmp(sig->r, order) >= 0 || BN_is_zero(sig->s) ||
395 BN_is_negative(sig->s) || BN_ucmp(sig->s, order) >= 0)
396 {
397 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ECDSA_R_BAD_SIGNATURE);
398 ret = 0; /* signature is invalid */
399 goto err;
400 }
401 /* calculate tmp1 = inv(S) mod order */
402 if (!BN_mod_inverse(u2, sig->s, order, ctx))
403 {
404 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
405 goto err;
406 }
407 /* digest -> m */
408 i = BN_num_bits(order);
409 /* Need to truncate digest if it is too long: first truncate whole
410 * bytes.
411 */
412 if (8 * dgst_len > i)
413 dgst_len = (i + 7)/8;
414 if (!BN_bin2bn(dgst, dgst_len, m))
415 {
416 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
417 goto err;
418 }
419 /* If still too long truncate remaining bits with a shift */
420 if ((8 * dgst_len > i) && !BN_rshift(m, m, 8 - (i & 0x7)))
421 {
422 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
423 goto err;
424 }
425 /* u1 = m * tmp mod order */
426 if (!BN_mod_mul(u1, m, u2, order, ctx))
427 {
428 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
429 goto err;
430 }
431 /* u2 = r * w mod q */
432 if (!BN_mod_mul(u2, sig->r, u2, order, ctx))
433 {
434 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
435 goto err;
436 }
437
438 if ((point = EC_POINT_new(group)) == NULL)
439 {
440 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_MALLOC_FAILURE);
441 goto err;
442 }
443 if (!EC_POINT_mul(group, point, u1, pub_key, u2, ctx))
444 {
445 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_EC_LIB);
446 goto err;
447 }
448 if (EC_METHOD_get_field_type(EC_GROUP_method_of(group)) == NID_X9_62_prime_field)
449 {
450 if (!EC_POINT_get_affine_coordinates_GFp(group,
451 point, X, NULL, ctx))
452 {
453 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_EC_LIB);
454 goto err;
455 }
456 }
457 else /* NID_X9_62_characteristic_two_field */
458 {
459 if (!EC_POINT_get_affine_coordinates_GF2m(group,
460 point, X, NULL, ctx))
461 {
462 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_EC_LIB);
463 goto err;
464 }
465 }
466
467 if (!BN_nnmod(u1, X, order, ctx))
468 {
469 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
470 goto err;
471 }
472 /* if the signature is correct u1 is equal to sig->r */
473 ret = (BN_ucmp(u1, sig->r) == 0);
474err:
475 BN_CTX_end(ctx);
476 BN_CTX_free(ctx);
477 if (point)
478 EC_POINT_free(point);
479 return ret;
480}
diff --git a/src/lib/libcrypto/ecdsa/ecs_sign.c b/src/lib/libcrypto/ecdsa/ecs_sign.c
deleted file mode 100644
index 353d5af514..0000000000
--- a/src/lib/libcrypto/ecdsa/ecs_sign.c
+++ /dev/null
@@ -1,106 +0,0 @@
1/* crypto/ecdsa/ecdsa_sign.c */
2/* ====================================================================
3 * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 *
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in
14 * the documentation and/or other materials provided with the
15 * distribution.
16 *
17 * 3. All advertising materials mentioning features or use of this
18 * software must display the following acknowledgment:
19 * "This product includes software developed by the OpenSSL Project
20 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
21 *
22 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
23 * endorse or promote products derived from this software without
24 * prior written permission. For written permission, please contact
25 * openssl-core@OpenSSL.org.
26 *
27 * 5. Products derived from this software may not be called "OpenSSL"
28 * nor may "OpenSSL" appear in their names without prior written
29 * permission of the OpenSSL Project.
30 *
31 * 6. Redistributions of any form whatsoever must retain the following
32 * acknowledgment:
33 * "This product includes software developed by the OpenSSL Project
34 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
35 *
36 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
37 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
38 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
39 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
40 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
41 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
42 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
43 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
44 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
45 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
46 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
47 * OF THE POSSIBILITY OF SUCH DAMAGE.
48 * ====================================================================
49 *
50 * This product includes cryptographic software written by Eric Young
51 * (eay@cryptsoft.com). This product includes software written by Tim
52 * Hudson (tjh@cryptsoft.com).
53 *
54 */
55
56#include "ecs_locl.h"
57#ifndef OPENSSL_NO_ENGINE
58#include <openssl/engine.h>
59#endif
60#include <openssl/rand.h>
61
62ECDSA_SIG *ECDSA_do_sign(const unsigned char *dgst, int dlen, EC_KEY *eckey)
63{
64 return ECDSA_do_sign_ex(dgst, dlen, NULL, NULL, eckey);
65}
66
67ECDSA_SIG *ECDSA_do_sign_ex(const unsigned char *dgst, int dlen,
68 const BIGNUM *kinv, const BIGNUM *rp, EC_KEY *eckey)
69{
70 ECDSA_DATA *ecdsa = ecdsa_check(eckey);
71 if (ecdsa == NULL)
72 return NULL;
73 return ecdsa->meth->ecdsa_do_sign(dgst, dlen, kinv, rp, eckey);
74}
75
76int ECDSA_sign(int type, const unsigned char *dgst, int dlen, unsigned char
77 *sig, unsigned int *siglen, EC_KEY *eckey)
78{
79 return ECDSA_sign_ex(type, dgst, dlen, sig, siglen, NULL, NULL, eckey);
80}
81
82int ECDSA_sign_ex(int type, const unsigned char *dgst, int dlen, unsigned char
83 *sig, unsigned int *siglen, const BIGNUM *kinv, const BIGNUM *r,
84 EC_KEY *eckey)
85{
86 ECDSA_SIG *s;
87 RAND_seed(dgst, dlen);
88 s = ECDSA_do_sign_ex(dgst, dlen, kinv, r, eckey);
89 if (s == NULL)
90 {
91 *siglen=0;
92 return 0;
93 }
94 *siglen = i2d_ECDSA_SIG(s, &sig);
95 ECDSA_SIG_free(s);
96 return 1;
97}
98
99int ECDSA_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in, BIGNUM **kinvp,
100 BIGNUM **rp)
101{
102 ECDSA_DATA *ecdsa = ecdsa_check(eckey);
103 if (ecdsa == NULL)
104 return 0;
105 return ecdsa->meth->ecdsa_sign_setup(eckey, ctx_in, kinvp, rp);
106}
diff --git a/src/lib/libcrypto/ecdsa/ecs_vrf.c b/src/lib/libcrypto/ecdsa/ecs_vrf.c
deleted file mode 100644
index ef9acf7b61..0000000000
--- a/src/lib/libcrypto/ecdsa/ecs_vrf.c
+++ /dev/null
@@ -1,96 +0,0 @@
1/* crypto/ecdsa/ecdsa_vrf.c */
2/*
3 * Written by Nils Larsch for the OpenSSL project
4 */
5/* ====================================================================
6 * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 *
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 *
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
18 * distribution.
19 *
20 * 3. All advertising materials mentioning features or use of this
21 * software must display the following acknowledgment:
22 * "This product includes software developed by the OpenSSL Project
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24 *
25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 * endorse or promote products derived from this software without
27 * prior written permission. For written permission, please contact
28 * openssl-core@OpenSSL.org.
29 *
30 * 5. Products derived from this software may not be called "OpenSSL"
31 * nor may "OpenSSL" appear in their names without prior written
32 * permission of the OpenSSL Project.
33 *
34 * 6. Redistributions of any form whatsoever must retain the following
35 * acknowledgment:
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38 *
39 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 * OF THE POSSIBILITY OF SUCH DAMAGE.
51 * ====================================================================
52 *
53 * This product includes cryptographic software written by Eric Young
54 * (eay@cryptsoft.com). This product includes software written by Tim
55 * Hudson (tjh@cryptsoft.com).
56 *
57 */
58
59#include "ecs_locl.h"
60#ifndef OPENSSL_NO_ENGINE
61#include <openssl/engine.h>
62#endif
63
64/* returns
65 * 1: correct signature
66 * 0: incorrect signature
67 * -1: error
68 */
69int ECDSA_do_verify(const unsigned char *dgst, int dgst_len,
70 const ECDSA_SIG *sig, EC_KEY *eckey)
71 {
72 ECDSA_DATA *ecdsa = ecdsa_check(eckey);
73 if (ecdsa == NULL)
74 return 0;
75 return ecdsa->meth->ecdsa_do_verify(dgst, dgst_len, sig, eckey);
76 }
77
78/* returns
79 * 1: correct signature
80 * 0: incorrect signature
81 * -1: error
82 */
83int ECDSA_verify(int type, const unsigned char *dgst, int dgst_len,
84 const unsigned char *sigbuf, int sig_len, EC_KEY *eckey)
85 {
86 ECDSA_SIG *s;
87 int ret=-1;
88
89 s = ECDSA_SIG_new();
90 if (s == NULL) return(ret);
91 if (d2i_ECDSA_SIG(&s, &sigbuf, sig_len) == NULL) goto err;
92 ret=ECDSA_do_verify(dgst, dgst_len, s, eckey);
93err:
94 ECDSA_SIG_free(s);
95 return(ret);
96 }