summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/ecdh
diff options
context:
space:
mode:
authormiod <>2014-04-15 18:01:18 +0000
committermiod <>2014-04-15 18:01:18 +0000
commitf385533fd495dad9242f2eded4a9017f658ee678 (patch)
tree861cdfe8fca12990e76c301d0853c2ab45705858 /src/regress/lib/libcrypto/ecdh
parentfea4fc3d16f04ff054803f9276895492961ab5e2 (diff)
downloadopenbsd-f385533fd495dad9242f2eded4a9017f658ee678.tar.gz
openbsd-f385533fd495dad9242f2eded4a9017f658ee678.tar.bz2
openbsd-f385533fd495dad9242f2eded4a9017f658ee678.zip
Import the OpenSSL libcrypto tests in a form suitable for our rergress
infrastructure. The following tests have not been imported, for their code lacks a licence: asn1, rsa, sha256, sha512, wp.
Diffstat (limited to 'src/regress/lib/libcrypto/ecdh')
-rw-r--r--src/regress/lib/libcrypto/ecdh/Makefile7
-rw-r--r--src/regress/lib/libcrypto/ecdh/ecdhtest.c278
2 files changed, 285 insertions, 0 deletions
diff --git a/src/regress/lib/libcrypto/ecdh/Makefile b/src/regress/lib/libcrypto/ecdh/Makefile
new file mode 100644
index 0000000000..5eb18a3205
--- /dev/null
+++ b/src/regress/lib/libcrypto/ecdh/Makefile
@@ -0,0 +1,7 @@
1# $OpenBSD: Makefile,v 1.1.1.1 2014/04/15 18:01:16 miod Exp $
2
3PROG= ecdhtest
4LDADD= -lcrypto
5DPADD= ${LIBCRYPTO}
6
7.include <bsd.regress.mk>
diff --git a/src/regress/lib/libcrypto/ecdh/ecdhtest.c b/src/regress/lib/libcrypto/ecdh/ecdhtest.c
new file mode 100644
index 0000000000..bf362245bb
--- /dev/null
+++ b/src/regress/lib/libcrypto/ecdh/ecdhtest.c
@@ -0,0 +1,278 @@
1/* crypto/ecdh/ecdhtest.c */
2/* ====================================================================
3 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
4 *
5 * The Elliptic Curve Public-Key Crypto Library (ECC Code) included
6 * herein is developed by SUN MICROSYSTEMS, INC., and is contributed
7 * to the OpenSSL project.
8 *
9 * The ECC Code is licensed pursuant to the OpenSSL open source
10 * license provided below.
11 *
12 * The ECDH software is originally written by Douglas Stebila of
13 * Sun Microsystems Laboratories.
14 *
15 */
16/* ====================================================================
17 * Copyright (c) 1998-2003 The OpenSSL Project. All rights reserved.
18 *
19 * Redistribution and use in source and binary forms, with or without
20 * modification, are permitted provided that the following conditions
21 * are met:
22 *
23 * 1. Redistributions of source code must retain the above copyright
24 * notice, this list of conditions and the following disclaimer.
25 *
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in
28 * the documentation and/or other materials provided with the
29 * distribution.
30 *
31 * 3. All advertising materials mentioning features or use of this
32 * software must display the following acknowledgment:
33 * "This product includes software developed by the OpenSSL Project
34 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
35 *
36 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
37 * endorse or promote products derived from this software without
38 * prior written permission. For written permission, please contact
39 * openssl-core@openssl.org.
40 *
41 * 5. Products derived from this software may not be called "OpenSSL"
42 * nor may "OpenSSL" appear in their names without prior written
43 * permission of the OpenSSL Project.
44 *
45 * 6. Redistributions of any form whatsoever must retain the following
46 * acknowledgment:
47 * "This product includes software developed by the OpenSSL Project
48 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
49 *
50 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
51 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
52 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
53 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
54 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
55 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
56 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
57 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
58 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
59 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
60 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
61 * OF THE POSSIBILITY OF SUCH DAMAGE.
62 * ====================================================================
63 *
64 * This product includes cryptographic software written by Eric Young
65 * (eay@cryptsoft.com). This product includes software written by Tim
66 * Hudson (tjh@cryptsoft.com).
67 *
68 */
69
70#include <stdio.h>
71#include <stdlib.h>
72#include <string.h>
73
74#include <openssl/crypto.h>
75#include <openssl/bio.h>
76#include <openssl/bn.h>
77#include <openssl/objects.h>
78#include <openssl/rand.h>
79#include <openssl/sha.h>
80#include <openssl/err.h>
81
82#include <openssl/ec.h>
83#include <openssl/ecdh.h>
84
85static const int KDF1_SHA1_len = 20;
86static void *KDF1_SHA1(const void *in, size_t inlen, void *out, size_t *outlen)
87 {
88#ifndef OPENSSL_NO_SHA
89 if (*outlen < SHA_DIGEST_LENGTH)
90 return NULL;
91 else
92 *outlen = SHA_DIGEST_LENGTH;
93 return SHA1(in, inlen, out);
94#else
95 return NULL;
96#endif
97 }
98
99
100static int test_ecdh_curve(int nid, const char *text, BN_CTX *ctx, BIO *out)
101 {
102 EC_KEY *a=NULL;
103 EC_KEY *b=NULL;
104 BIGNUM *x_a=NULL, *y_a=NULL,
105 *x_b=NULL, *y_b=NULL;
106 char buf[12];
107 unsigned char *abuf=NULL,*bbuf=NULL;
108 int i,alen,blen,aout,bout,ret=0;
109 const EC_GROUP *group;
110
111 a = EC_KEY_new_by_curve_name(nid);
112 b = EC_KEY_new_by_curve_name(nid);
113 if (a == NULL || b == NULL)
114 goto err;
115
116 group = EC_KEY_get0_group(a);
117
118 if ((x_a=BN_new()) == NULL) goto err;
119 if ((y_a=BN_new()) == NULL) goto err;
120 if ((x_b=BN_new()) == NULL) goto err;
121 if ((y_b=BN_new()) == NULL) goto err;
122
123 BIO_puts(out,"Testing key generation with ");
124 BIO_puts(out,text);
125 (void)BIO_flush(out);
126
127 if (!EC_KEY_generate_key(a)) goto err;
128
129 if (EC_METHOD_get_field_type(EC_GROUP_method_of(group)) == NID_X9_62_prime_field)
130 {
131 if (!EC_POINT_get_affine_coordinates_GFp(group,
132 EC_KEY_get0_public_key(a), x_a, y_a, ctx)) goto err;
133 }
134#ifndef OPENSSL_NO_EC2M
135 else
136 {
137 if (!EC_POINT_get_affine_coordinates_GF2m(group,
138 EC_KEY_get0_public_key(a), x_a, y_a, ctx)) goto err;
139 }
140#endif
141 BIO_printf(out," .");
142 (void)BIO_flush(out);
143
144 if (!EC_KEY_generate_key(b)) goto err;
145
146 if (EC_METHOD_get_field_type(EC_GROUP_method_of(group)) == NID_X9_62_prime_field)
147 {
148 if (!EC_POINT_get_affine_coordinates_GFp(group,
149 EC_KEY_get0_public_key(b), x_b, y_b, ctx)) goto err;
150 }
151#ifndef OPENSSL_NO_EC2M
152 else
153 {
154 if (!EC_POINT_get_affine_coordinates_GF2m(group,
155 EC_KEY_get0_public_key(b), x_b, y_b, ctx)) goto err;
156 }
157#endif
158
159 BIO_printf(out,".");
160 (void)BIO_flush(out);
161
162 alen=KDF1_SHA1_len;
163 abuf=(unsigned char *)OPENSSL_malloc(alen);
164 aout=ECDH_compute_key(abuf,alen,EC_KEY_get0_public_key(b),a,KDF1_SHA1);
165
166 BIO_printf(out,".");
167 (void)BIO_flush(out);
168
169 blen=KDF1_SHA1_len;
170 bbuf=(unsigned char *)OPENSSL_malloc(blen);
171 bout=ECDH_compute_key(bbuf,blen,EC_KEY_get0_public_key(a),b,KDF1_SHA1);
172
173 BIO_printf(out,".");
174 (void)BIO_flush(out);
175
176 if ((aout < 4) || (bout != aout) || (memcmp(abuf,bbuf,aout) != 0))
177 {
178 BIO_printf(out, " failed\n\n");
179 BIO_printf(out, "key a:\n");
180 BIO_printf(out, "private key: ");
181 BN_print(out, EC_KEY_get0_private_key(a));
182 BIO_printf(out, "\n");
183 BIO_printf(out, "public key (x,y): ");
184 BN_print(out, x_a);
185 BIO_printf(out, ",");
186 BN_print(out, y_a);
187 BIO_printf(out, "\nkey b:\n");
188 BIO_printf(out, "private key: ");
189 BN_print(out, EC_KEY_get0_private_key(b));
190 BIO_printf(out, "\n");
191 BIO_printf(out, "public key (x,y): ");
192 BN_print(out, x_b);
193 BIO_printf(out, ",");
194 BN_print(out, y_b);
195 BIO_printf(out, "\n");
196 BIO_printf(out, "generated key a: ");
197 for (i=0; i<bout; i++)
198 {
199 snprintf(buf, sizeof buf, "%02X", bbuf[i]);
200 BIO_puts(out, buf);
201 }
202 BIO_printf(out, "\n");
203 BIO_printf(out, "generated key b: ");
204 for (i=0; i<aout; i++)
205 {
206 snprintf(buf, sizeof buf, "%02X", abuf[i]);
207 BIO_puts(out,buf);
208 }
209 BIO_printf(out, "\n");
210 fprintf(stderr,"Error in ECDH routines\n");
211 ret=0;
212 }
213 else
214 {
215 BIO_printf(out, " ok\n");
216 ret=1;
217 }
218err:
219 ERR_print_errors_fp(stderr);
220
221 if (abuf != NULL) OPENSSL_free(abuf);
222 if (bbuf != NULL) OPENSSL_free(bbuf);
223 if (x_a) BN_free(x_a);
224 if (y_a) BN_free(y_a);
225 if (x_b) BN_free(x_b);
226 if (y_b) BN_free(y_b);
227 if (b) EC_KEY_free(b);
228 if (a) EC_KEY_free(a);
229 return(ret);
230 }
231
232int main(int argc, char *argv[])
233 {
234 BN_CTX *ctx=NULL;
235 int ret=1;
236 BIO *out;
237
238 CRYPTO_malloc_debug_init();
239 CRYPTO_dbg_set_options(V_CRYPTO_MDEBUG_ALL);
240 CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
241
242 out=BIO_new(BIO_s_file());
243 if (out == NULL) exit(1);
244 BIO_set_fp(out,stdout,BIO_NOCLOSE);
245
246 if ((ctx=BN_CTX_new()) == NULL) goto err;
247
248 /* NIST PRIME CURVES TESTS */
249 if (!test_ecdh_curve(NID_X9_62_prime192v1, "NIST Prime-Curve P-192", ctx, out)) goto err;
250 if (!test_ecdh_curve(NID_secp224r1, "NIST Prime-Curve P-224", ctx, out)) goto err;
251 if (!test_ecdh_curve(NID_X9_62_prime256v1, "NIST Prime-Curve P-256", ctx, out)) goto err;
252 if (!test_ecdh_curve(NID_secp384r1, "NIST Prime-Curve P-384", ctx, out)) goto err;
253 if (!test_ecdh_curve(NID_secp521r1, "NIST Prime-Curve P-521", ctx, out)) goto err;
254#ifndef OPENSSL_NO_EC2M
255 /* NIST BINARY CURVES TESTS */
256 if (!test_ecdh_curve(NID_sect163k1, "NIST Binary-Curve K-163", ctx, out)) goto err;
257 if (!test_ecdh_curve(NID_sect163r2, "NIST Binary-Curve B-163", ctx, out)) goto err;
258 if (!test_ecdh_curve(NID_sect233k1, "NIST Binary-Curve K-233", ctx, out)) goto err;
259 if (!test_ecdh_curve(NID_sect233r1, "NIST Binary-Curve B-233", ctx, out)) goto err;
260 if (!test_ecdh_curve(NID_sect283k1, "NIST Binary-Curve K-283", ctx, out)) goto err;
261 if (!test_ecdh_curve(NID_sect283r1, "NIST Binary-Curve B-283", ctx, out)) goto err;
262 if (!test_ecdh_curve(NID_sect409k1, "NIST Binary-Curve K-409", ctx, out)) goto err;
263 if (!test_ecdh_curve(NID_sect409r1, "NIST Binary-Curve B-409", ctx, out)) goto err;
264 if (!test_ecdh_curve(NID_sect571k1, "NIST Binary-Curve K-571", ctx, out)) goto err;
265 if (!test_ecdh_curve(NID_sect571r1, "NIST Binary-Curve B-571", ctx, out)) goto err;
266#endif
267
268 ret = 0;
269
270err:
271 ERR_print_errors_fp(stderr);
272 if (ctx) BN_CTX_free(ctx);
273 BIO_free(out);
274 CRYPTO_cleanup_all_ex_data();
275 ERR_remove_thread_state(NULL);
276 CRYPTO_mem_leaks_fp(stderr);
277 exit(ret);
278 }