summaryrefslogtreecommitdiff
path: root/src/lib/libssl/src/ssl/ssltest.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/src/ssl/ssltest.c')
-rw-r--r--src/lib/libssl/src/ssl/ssltest.c1062
1 files changed, 956 insertions, 106 deletions
diff --git a/src/lib/libssl/src/ssl/ssltest.c b/src/lib/libssl/src/ssl/ssltest.c
index f9dca4e3ef..1afdfa7750 100644
--- a/src/lib/libssl/src/ssl/ssltest.c
+++ b/src/lib/libssl/src/ssl/ssltest.c
@@ -55,56 +55,137 @@
55 * copied and put under another distribution licence 55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.] 56 * [including the GNU Public Licence.]
57 */ 57 */
58/* ====================================================================
59 * Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved.
60 *
61 * Redistribution and use in source and binary forms, with or without
62 * modification, are permitted provided that the following conditions
63 * are met:
64 *
65 * 1. Redistributions of source code must retain the above copyright
66 * notice, this list of conditions and the following disclaimer.
67 *
68 * 2. Redistributions in binary form must reproduce the above copyright
69 * notice, this list of conditions and the following disclaimer in
70 * the documentation and/or other materials provided with the
71 * distribution.
72 *
73 * 3. All advertising materials mentioning features or use of this
74 * software must display the following acknowledgment:
75 * "This product includes software developed by the OpenSSL Project
76 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
77 *
78 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
79 * endorse or promote products derived from this software without
80 * prior written permission. For written permission, please contact
81 * openssl-core@openssl.org.
82 *
83 * 5. Products derived from this software may not be called "OpenSSL"
84 * nor may "OpenSSL" appear in their names without prior written
85 * permission of the OpenSSL Project.
86 *
87 * 6. Redistributions of any form whatsoever must retain the following
88 * acknowledgment:
89 * "This product includes software developed by the OpenSSL Project
90 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
91 *
92 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
93 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
94 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
95 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
96 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
97 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
98 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
99 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
100 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
101 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
102 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
103 * OF THE POSSIBILITY OF SUCH DAMAGE.
104 * ====================================================================
105 *
106 * This product includes cryptographic software written by Eric Young
107 * (eay@cryptsoft.com). This product includes software written by Tim
108 * Hudson (tjh@cryptsoft.com).
109 *
110 */
111
112#define _XOPEN_SOURCE 600 /* Or gethostname won't be declared properly
113 on Linux and GNU platforms. */
114#define _XOPEN_SOURCE_EXTENDED 1 /* Or gethostname won't be declared properly
115 on Compaq platforms (at least with DEC C).
116 */
58 117
118#include <assert.h>
119#include <errno.h>
120#include <limits.h>
59#include <stdio.h> 121#include <stdio.h>
60#include <stdlib.h> 122#include <stdlib.h>
61#include <string.h> 123#include <string.h>
62#include <errno.h> 124#include <time.h>
125
63#include "e_os.h" 126#include "e_os.h"
64#include "bio.h" 127
65#include "crypto.h" 128#include <openssl/bio.h>
66#include "x509.h" 129#include <openssl/crypto.h>
67#include "ssl.h" 130#include <openssl/evp.h>
68#include "err.h" 131#include <openssl/x509.h>
69#ifdef WINDOWS 132#include <openssl/ssl.h>
133#include <openssl/engine.h>
134#include <openssl/err.h>
135#include <openssl/rand.h>
136#ifdef OPENSSL_SYS_WINDOWS
137#include <winsock.h>
70#include "../crypto/bio/bss_file.c" 138#include "../crypto/bio/bss_file.c"
139#else
140#include OPENSSL_UNISTD
71#endif 141#endif
72 142
73#define TEST_SERVER_CERT "../apps/server.pem" 143#ifdef OPENSSL_SYS_VMS
74#define TEST_CLIENT_CERT "../apps/client.pem" 144# define TEST_SERVER_CERT "SYS$DISK:[-.APPS]SERVER.PEM"
75 145# define TEST_CLIENT_CERT "SYS$DISK:[-.APPS]CLIENT.PEM"
76#ifndef NOPROTO
77int MS_CALLBACK verify_callback(int ok, X509_STORE_CTX *ctx);
78static RSA MS_CALLBACK *tmp_rsa_cb(SSL *s, int export);
79#ifndef NO_DSA
80static DH *get_dh512(void);
81#endif
82#else 146#else
83int MS_CALLBACK verify_callback(); 147# define TEST_SERVER_CERT "../apps/server.pem"
84static RSA MS_CALLBACK *tmp_rsa_cb(); 148# define TEST_CLIENT_CERT "../apps/client.pem"
85#ifndef NO_DSA
86static DH *get_dh512();
87#endif 149#endif
150
151/* There is really no standard for this, so let's assign some tentative
152 numbers. In any case, these numbers are only for this test */
153#define COMP_RLE 1
154#define COMP_ZLIB 2
155
156static int MS_CALLBACK verify_callback(int ok, X509_STORE_CTX *ctx);
157#ifndef OPENSSL_NO_RSA
158static RSA MS_CALLBACK *tmp_rsa_cb(SSL *s, int is_export,int keylength);
159static void free_tmp_rsa(void);
88#endif 160#endif
161static int MS_CALLBACK app_verify_callback(X509_STORE_CTX *ctx, void *arg);
162#define APP_CALLBACK "Test Callback Argument"
163static char *app_verify_arg = APP_CALLBACK;
89 164
90BIO *bio_err=NULL; 165#ifndef OPENSSL_NO_DH
91BIO *bio_stdout=NULL; 166static DH *get_dh512(void);
167static DH *get_dh1024(void);
168static DH *get_dh1024dsa(void);
169#endif
170
171static BIO *bio_err=NULL;
172static BIO *bio_stdout=NULL;
92 173
93static char *cipher=NULL; 174static char *cipher=NULL;
94int verbose=0; 175static int verbose=0;
95int debug=0; 176static int debug=0;
177#if 0
178/* Not used yet. */
96#ifdef FIONBIO 179#ifdef FIONBIO
97static int s_nbio=0; 180static int s_nbio=0;
98#endif 181#endif
182#endif
99 183
184static const char rnd_seed[] = "string to make the random number generator think it has entropy";
100 185
101#ifndef NOPROTO 186int doit_biopair(SSL *s_ssl,SSL *c_ssl,long bytes,clock_t *s_time,clock_t *c_time);
102int doit(SSL *s_ssl,SSL *c_ssl,long bytes); 187int doit(SSL *s_ssl,SSL *c_ssl,long bytes);
103#else 188static void sv_usage(void)
104int doit();
105#endif
106
107static void sv_usage()
108 { 189 {
109 fprintf(stderr,"usage: ssltest [args ...]\n"); 190 fprintf(stderr,"usage: ssltest [args ...]\n");
110 fprintf(stderr,"\n"); 191 fprintf(stderr,"\n");
@@ -115,50 +196,195 @@ static void sv_usage()
115 fprintf(stderr," -reuse - use session-id reuse\n"); 196 fprintf(stderr," -reuse - use session-id reuse\n");
116 fprintf(stderr," -num <val> - number of connections to perform\n"); 197 fprintf(stderr," -num <val> - number of connections to perform\n");
117 fprintf(stderr," -bytes <val> - number of bytes to swap between client/server\n"); 198 fprintf(stderr," -bytes <val> - number of bytes to swap between client/server\n");
118#ifndef NO_SSL2 199#ifndef OPENSSL_NO_DH
200 fprintf(stderr," -dhe1024 - use 1024 bit key (safe prime) for DHE\n");
201 fprintf(stderr," -dhe1024dsa - use 1024 bit key (with 160-bit subprime) for DHE\n");
202 fprintf(stderr," -no_dhe - disable DHE\n");
203#endif
204#ifndef OPENSSL_NO_SSL2
119 fprintf(stderr," -ssl2 - use SSLv2\n"); 205 fprintf(stderr," -ssl2 - use SSLv2\n");
120#endif 206#endif
121#ifndef NO_SSL3 207#ifndef OPENSSL_NO_SSL3
122 fprintf(stderr," -ssl3 - use SSLv3\n"); 208 fprintf(stderr," -ssl3 - use SSLv3\n");
123#endif 209#endif
124#ifndef NO_TLS1 210#ifndef OPENSSL_NO_TLS1
125 fprintf(stderr," -tls1 - use TLSv1\n"); 211 fprintf(stderr," -tls1 - use TLSv1\n");
126#endif 212#endif
127 fprintf(stderr," -CApath arg - PEM format directory of CA's\n"); 213 fprintf(stderr," -CApath arg - PEM format directory of CA's\n");
128 fprintf(stderr," -CAfile arg - PEM format file of CA's\n"); 214 fprintf(stderr," -CAfile arg - PEM format file of CA's\n");
129 fprintf(stderr," -cert arg - Certificate file\n"); 215 fprintf(stderr," -cert arg - Server certificate file\n");
130 fprintf(stderr," -s_cert arg - Just the server certificate file\n"); 216 fprintf(stderr," -key arg - Server key file (default: same as -cert)\n");
131 fprintf(stderr," -c_cert arg - Just the client certificate file\n"); 217 fprintf(stderr," -c_cert arg - Client certificate file\n");
218 fprintf(stderr," -c_key arg - Client key file (default: same as -c_cert)\n");
132 fprintf(stderr," -cipher arg - The cipher list\n"); 219 fprintf(stderr," -cipher arg - The cipher list\n");
220 fprintf(stderr," -bio_pair - Use BIO pairs\n");
221 fprintf(stderr," -f - Test even cases that can't work\n");
222 fprintf(stderr," -time - measure processor time used by client and server\n");
223 fprintf(stderr," -zlib - use zlib compression\n");
224 fprintf(stderr," -time - use rle compression\n");
133 } 225 }
134 226
135int main(argc, argv) 227static void print_details(SSL *c_ssl, const char *prefix)
136int argc; 228 {
137char *argv[]; 229 SSL_CIPHER *ciph;
230 X509 *cert;
231
232 ciph=SSL_get_current_cipher(c_ssl);
233 BIO_printf(bio_stdout,"%s%s, cipher %s %s",
234 prefix,
235 SSL_get_version(c_ssl),
236 SSL_CIPHER_get_version(ciph),
237 SSL_CIPHER_get_name(ciph));
238 cert=SSL_get_peer_certificate(c_ssl);
239 if (cert != NULL)
240 {
241 EVP_PKEY *pkey = X509_get_pubkey(cert);
242 if (pkey != NULL)
243 {
244 if (0)
245 ;
246#ifndef OPENSSL_NO_RSA
247 else if (pkey->type == EVP_PKEY_RSA && pkey->pkey.rsa != NULL
248 && pkey->pkey.rsa->n != NULL)
249 {
250 BIO_printf(bio_stdout, ", %d bit RSA",
251 BN_num_bits(pkey->pkey.rsa->n));
252 }
253#endif
254#ifndef OPENSSL_NO_DSA
255 else if (pkey->type == EVP_PKEY_DSA && pkey->pkey.dsa != NULL
256 && pkey->pkey.dsa->p != NULL)
257 {
258 BIO_printf(bio_stdout, ", %d bit DSA",
259 BN_num_bits(pkey->pkey.dsa->p));
260 }
261#endif
262 EVP_PKEY_free(pkey);
263 }
264 X509_free(cert);
265 }
266 /* The SSL API does not allow us to look at temporary RSA/DH keys,
267 * otherwise we should print their lengths too */
268 BIO_printf(bio_stdout,"\n");
269 }
270
271static void lock_dbg_cb(int mode, int type, const char *file, int line)
272 {
273 static int modes[CRYPTO_NUM_LOCKS]; /* = {0, 0, ... } */
274 const char *errstr = NULL;
275 int rw;
276
277 rw = mode & (CRYPTO_READ|CRYPTO_WRITE);
278 if (!((rw == CRYPTO_READ) || (rw == CRYPTO_WRITE)))
279 {
280 errstr = "invalid mode";
281 goto err;
282 }
283
284 if (type < 0 || type > CRYPTO_NUM_LOCKS)
285 {
286 errstr = "type out of bounds";
287 goto err;
288 }
289
290 if (mode & CRYPTO_LOCK)
291 {
292 if (modes[type])
293 {
294 errstr = "already locked";
295 /* must not happen in a single-threaded program
296 * (would deadlock) */
297 goto err;
298 }
299
300 modes[type] = rw;
301 }
302 else if (mode & CRYPTO_UNLOCK)
303 {
304 if (!modes[type])
305 {
306 errstr = "not locked";
307 goto err;
308 }
309
310 if (modes[type] != rw)
311 {
312 errstr = (rw == CRYPTO_READ) ?
313 "CRYPTO_r_unlock on write lock" :
314 "CRYPTO_w_unlock on read lock";
315 }
316
317 modes[type] = 0;
318 }
319 else
320 {
321 errstr = "invalid mode";
322 goto err;
323 }
324
325 err:
326 if (errstr)
327 {
328 /* we cannot use bio_err here */
329 fprintf(stderr, "openssl (lock_dbg_cb): %s (mode=%d, type=%d) at %s:%d\n",
330 errstr, mode, type, file, line);
331 }
332 }
333
334int main(int argc, char *argv[])
138 { 335 {
139 char *CApath=NULL,*CAfile=NULL; 336 char *CApath=NULL,*CAfile=NULL;
140 int badop=0; 337 int badop=0;
338 int bio_pair=0;
339 int force=0;
141 int tls1=0,ssl2=0,ssl3=0,ret=1; 340 int tls1=0,ssl2=0,ssl3=0,ret=1;
142 int client_auth=0; 341 int client_auth=0;
143 int server_auth=0,i; 342 int server_auth=0,i;
343 int app_verify=0;
144 char *server_cert=TEST_SERVER_CERT; 344 char *server_cert=TEST_SERVER_CERT;
345 char *server_key=NULL;
145 char *client_cert=TEST_CLIENT_CERT; 346 char *client_cert=TEST_CLIENT_CERT;
347 char *client_key=NULL;
146 SSL_CTX *s_ctx=NULL; 348 SSL_CTX *s_ctx=NULL;
147 SSL_CTX *c_ctx=NULL; 349 SSL_CTX *c_ctx=NULL;
148 SSL_METHOD *meth=NULL; 350 SSL_METHOD *meth=NULL;
149 SSL *c_ssl,*s_ssl; 351 SSL *c_ssl,*s_ssl;
150 int number=1,reuse=0; 352 int number=1,reuse=0;
151 long bytes=1L; 353 long bytes=1L;
152 SSL_CIPHER *ciph; 354#ifndef OPENSSL_NO_DH
153#ifndef NO_DH
154 DH *dh; 355 DH *dh;
356 int dhe1024 = 0, dhe1024dsa = 0;
155#endif 357#endif
358 int no_dhe = 0;
359 int print_time = 0;
360 clock_t s_time = 0, c_time = 0;
361 int comp = 0;
362 COMP_METHOD *cm = NULL;
156 363
157 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE); 364 verbose = 0;
158 bio_stdout=BIO_new_fp(stdout,BIO_NOCLOSE); 365 debug = 0;
366 cipher = 0;
367
368 CRYPTO_set_locking_callback(lock_dbg_cb);
159 369
370 /* enable memory leak checking unless explicitly disabled */
371 if (!((getenv("OPENSSL_DEBUG_MEMORY") != NULL) && (0 == strcmp(getenv("OPENSSL_DEBUG_MEMORY"), "off"))))
372 {
373 CRYPTO_malloc_debug_init();
374 CRYPTO_set_mem_debug_options(V_CRYPTO_MDEBUG_ALL);
375 }
376 else
377 {
378 /* OPENSSL_DEBUG_MEMORY=off */
379 CRYPTO_set_mem_debug_functions(0, 0, 0, 0, 0);
380 }
160 CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON); 381 CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
161 382
383 RAND_seed(rnd_seed, sizeof rnd_seed);
384
385 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
386 bio_stdout=BIO_new_fp(stdout,BIO_NOCLOSE);
387
162 argc--; 388 argc--;
163 argv++; 389 argv++;
164 390
@@ -174,6 +400,14 @@ char *argv[];
174 debug=1; 400 debug=1;
175 else if (strcmp(*argv,"-reuse") == 0) 401 else if (strcmp(*argv,"-reuse") == 0)
176 reuse=1; 402 reuse=1;
403#ifndef OPENSSL_NO_DH
404 else if (strcmp(*argv,"-dhe1024") == 0)
405 dhe1024=1;
406 else if (strcmp(*argv,"-dhe1024dsa") == 0)
407 dhe1024dsa=1;
408#endif
409 else if (strcmp(*argv,"-no_dhe") == 0)
410 no_dhe=1;
177 else if (strcmp(*argv,"-ssl2") == 0) 411 else if (strcmp(*argv,"-ssl2") == 0)
178 ssl2=1; 412 ssl2=1;
179 else if (strcmp(*argv,"-tls1") == 0) 413 else if (strcmp(*argv,"-tls1") == 0)
@@ -205,11 +439,26 @@ char *argv[];
205 if (--argc < 1) goto bad; 439 if (--argc < 1) goto bad;
206 server_cert= *(++argv); 440 server_cert= *(++argv);
207 } 441 }
442 else if (strcmp(*argv,"-key") == 0)
443 {
444 if (--argc < 1) goto bad;
445 server_key= *(++argv);
446 }
447 else if (strcmp(*argv,"-s_key") == 0)
448 {
449 if (--argc < 1) goto bad;
450 server_key= *(++argv);
451 }
208 else if (strcmp(*argv,"-c_cert") == 0) 452 else if (strcmp(*argv,"-c_cert") == 0)
209 { 453 {
210 if (--argc < 1) goto bad; 454 if (--argc < 1) goto bad;
211 client_cert= *(++argv); 455 client_cert= *(++argv);
212 } 456 }
457 else if (strcmp(*argv,"-c_key") == 0)
458 {
459 if (--argc < 1) goto bad;
460 client_key= *(++argv);
461 }
213 else if (strcmp(*argv,"-cipher") == 0) 462 else if (strcmp(*argv,"-cipher") == 0)
214 { 463 {
215 if (--argc < 1) goto bad; 464 if (--argc < 1) goto bad;
@@ -225,6 +474,30 @@ char *argv[];
225 if (--argc < 1) goto bad; 474 if (--argc < 1) goto bad;
226 CAfile= *(++argv); 475 CAfile= *(++argv);
227 } 476 }
477 else if (strcmp(*argv,"-bio_pair") == 0)
478 {
479 bio_pair = 1;
480 }
481 else if (strcmp(*argv,"-f") == 0)
482 {
483 force = 1;
484 }
485 else if (strcmp(*argv,"-time") == 0)
486 {
487 print_time = 1;
488 }
489 else if (strcmp(*argv,"-zlib") == 0)
490 {
491 comp = COMP_ZLIB;
492 }
493 else if (strcmp(*argv,"-rle") == 0)
494 {
495 comp = COMP_RLE;
496 }
497 else if (strcmp(*argv,"-app_verify") == 0)
498 {
499 app_verify = 1;
500 }
228 else 501 else
229 { 502 {
230 fprintf(stderr,"unknown option %s\n",*argv); 503 fprintf(stderr,"unknown option %s\n",*argv);
@@ -241,12 +514,49 @@ bad:
241 goto end; 514 goto end;
242 } 515 }
243 516
517 if (!ssl2 && !ssl3 && !tls1 && number > 1 && !reuse && !force)
518 {
519 fprintf(stderr, "This case cannot work. Use -f to perform "
520 "the test anyway (and\n-d to see what happens), "
521 "or add one of -ssl2, -ssl3, -tls1, -reuse\n"
522 "to avoid protocol mismatch.\n");
523 exit(1);
524 }
525
526 if (print_time)
527 {
528 if (!bio_pair)
529 {
530 fprintf(stderr, "Using BIO pair (-bio_pair)\n");
531 bio_pair = 1;
532 }
533 if (number < 50 && !force)
534 fprintf(stderr, "Warning: For accurate timings, use more connections (e.g. -num 1000)\n");
535 }
536
244/* if (cipher == NULL) cipher=getenv("SSL_CIPHER"); */ 537/* if (cipher == NULL) cipher=getenv("SSL_CIPHER"); */
245 538
246 SSLeay_add_ssl_algorithms(); 539 SSL_library_init();
247 SSL_load_error_strings(); 540 SSL_load_error_strings();
248 541
249#if !defined(NO_SSL2) && !defined(NO_SSL3) 542 if (comp == COMP_ZLIB) cm = COMP_zlib();
543 if (comp == COMP_RLE) cm = COMP_rle();
544 if (cm != NULL)
545 {
546 if (cm->type != NID_undef)
547 SSL_COMP_add_compression_method(comp, cm);
548 else
549 {
550 fprintf(stderr,
551 "Warning: %s compression not supported\n",
552 (comp == COMP_RLE ? "rle" :
553 (comp == COMP_ZLIB ? "zlib" :
554 "unknown")));
555 ERR_print_errors_fp(stderr);
556 }
557 }
558
559#if !defined(OPENSSL_NO_SSL2) && !defined(OPENSSL_NO_SSL3)
250 if (ssl2) 560 if (ssl2)
251 meth=SSLv2_method(); 561 meth=SSLv2_method();
252 else 562 else
@@ -258,7 +568,7 @@ bad:
258 else 568 else
259 meth=SSLv23_method(); 569 meth=SSLv23_method();
260#else 570#else
261#ifdef NO_SSL2 571#ifdef OPENSSL_NO_SSL2
262 meth=SSLv3_method(); 572 meth=SSLv3_method();
263#else 573#else
264 meth=SSLv2_method(); 574 meth=SSLv2_method();
@@ -279,13 +589,27 @@ bad:
279 SSL_CTX_set_cipher_list(s_ctx,cipher); 589 SSL_CTX_set_cipher_list(s_ctx,cipher);
280 } 590 }
281 591
282#ifndef NO_DH 592#ifndef OPENSSL_NO_DH
283 dh=get_dh512(); 593 if (!no_dhe)
284 SSL_CTX_set_tmp_dh(s_ctx,dh); 594 {
285 DH_free(dh); 595 if (dhe1024dsa)
596 {
597 /* use SSL_OP_SINGLE_DH_USE to avoid small subgroup attacks */
598 SSL_CTX_set_options(s_ctx, SSL_OP_SINGLE_DH_USE);
599 dh=get_dh1024dsa();
600 }
601 else if (dhe1024)
602 dh=get_dh1024();
603 else
604 dh=get_dh512();
605 SSL_CTX_set_tmp_dh(s_ctx,dh);
606 DH_free(dh);
607 }
608#else
609 (void)no_dhe;
286#endif 610#endif
287 611
288#ifndef NO_RSA 612#ifndef OPENSSL_NO_RSA
289 SSL_CTX_set_tmp_rsa_callback(s_ctx,tmp_rsa_cb); 613 SSL_CTX_set_tmp_rsa_callback(s_ctx,tmp_rsa_cb);
290#endif 614#endif
291 615
@@ -293,8 +617,8 @@ bad:
293 { 617 {
294 ERR_print_errors(bio_err); 618 ERR_print_errors(bio_err);
295 } 619 }
296 else if (!SSL_CTX_use_PrivateKey_file(s_ctx,server_cert, 620 else if (!SSL_CTX_use_PrivateKey_file(s_ctx,
297 SSL_FILETYPE_PEM)) 621 (server_key?server_key:server_cert), SSL_FILETYPE_PEM))
298 { 622 {
299 ERR_print_errors(bio_err); 623 ERR_print_errors(bio_err);
300 goto end; 624 goto end;
@@ -304,7 +628,8 @@ bad:
304 { 628 {
305 SSL_CTX_use_certificate_file(c_ctx,client_cert, 629 SSL_CTX_use_certificate_file(c_ctx,client_cert,
306 SSL_FILETYPE_PEM); 630 SSL_FILETYPE_PEM);
307 SSL_CTX_use_PrivateKey_file(c_ctx,client_cert, 631 SSL_CTX_use_PrivateKey_file(c_ctx,
632 (client_key?client_key:client_cert),
308 SSL_FILETYPE_PEM); 633 SSL_FILETYPE_PEM);
309 } 634 }
310 635
@@ -320,37 +645,83 @@ bad:
320 645
321 if (client_auth) 646 if (client_auth)
322 { 647 {
323 fprintf(stderr,"client authentication\n"); 648 BIO_printf(bio_err,"client authentication\n");
324 SSL_CTX_set_verify(s_ctx, 649 SSL_CTX_set_verify(s_ctx,
325 SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT, 650 SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
326 verify_callback); 651 verify_callback);
652 if (app_verify)
653 {
654 SSL_CTX_set_cert_verify_callback(s_ctx, app_verify_callback, app_verify_arg);
655 }
327 } 656 }
328 if (server_auth) 657 if (server_auth)
329 { 658 {
330 fprintf(stderr,"server authentication\n"); 659 BIO_printf(bio_err,"server authentication\n");
331 SSL_CTX_set_verify(c_ctx,SSL_VERIFY_PEER, 660 SSL_CTX_set_verify(c_ctx,SSL_VERIFY_PEER,
332 verify_callback); 661 verify_callback);
662 if (app_verify)
663 {
664 SSL_CTX_set_cert_verify_callback(s_ctx, app_verify_callback, app_verify_arg);
665 }
333 } 666 }
667
668 {
669 int session_id_context = 0;
670 SSL_CTX_set_session_id_context(s_ctx, (void *)&session_id_context, sizeof session_id_context);
671 }
334 672
335 c_ssl=SSL_new(c_ctx); 673 c_ssl=SSL_new(c_ctx);
336 s_ssl=SSL_new(s_ctx); 674 s_ssl=SSL_new(s_ctx);
337 675
676#ifndef OPENSSL_NO_KRB5
677 if (c_ssl && c_ssl->kssl_ctx)
678 {
679 char localhost[257];
680
681 if (gethostname(localhost, 256) == 0)
682 {
683 kssl_ctx_setstring(c_ssl->kssl_ctx, KSSL_SERVER,
684 localhost);
685 }
686 }
687#endif /* OPENSSL_NO_KRB5 */
688
338 for (i=0; i<number; i++) 689 for (i=0; i<number; i++)
339 { 690 {
340 if (!reuse) SSL_set_session(c_ssl,NULL); 691 if (!reuse) SSL_set_session(c_ssl,NULL);
341 ret=doit(s_ssl,c_ssl,bytes); 692 if (bio_pair)
693 ret=doit_biopair(s_ssl,c_ssl,bytes,&s_time,&c_time);
694 else
695 ret=doit(s_ssl,c_ssl,bytes);
342 } 696 }
343 697
344 if (!verbose) 698 if (!verbose)
345 { 699 {
346 ciph=SSL_get_current_cipher(c_ssl); 700 print_details(c_ssl, "");
347 fprintf(stdout,"Protocol %s, cipher %s, %s\n",
348 SSL_get_version(c_ssl),
349 SSL_CIPHER_get_version(ciph),
350 SSL_CIPHER_get_name(ciph));
351 } 701 }
352 if ((number > 1) || (bytes > 1L)) 702 if ((number > 1) || (bytes > 1L))
353 printf("%d handshakes of %ld bytes done\n",number,bytes); 703 BIO_printf(bio_stdout, "%d handshakes of %ld bytes done\n",number,bytes);
704 if (print_time)
705 {
706#ifdef CLOCKS_PER_SEC
707 /* "To determine the time in seconds, the value returned
708 * by the clock function should be divided by the value
709 * of the macro CLOCKS_PER_SEC."
710 * -- ISO/IEC 9899 */
711 BIO_printf(bio_stdout, "Approximate total server time: %6.2f s\n"
712 "Approximate total client time: %6.2f s\n",
713 (double)s_time/CLOCKS_PER_SEC,
714 (double)c_time/CLOCKS_PER_SEC);
715#else
716 /* "`CLOCKS_PER_SEC' undeclared (first use this function)"
717 * -- cc on NeXTstep/OpenStep */
718 BIO_printf(bio_stdout,
719 "Approximate total server time: %6.2f units\n"
720 "Approximate total client time: %6.2f units\n",
721 (double)s_time,
722 (double)c_time);
723#endif
724 }
354 725
355 SSL_free(s_ssl); 726 SSL_free(s_ssl);
356 SSL_free(c_ssl); 727 SSL_free(c_ssl);
@@ -361,20 +732,410 @@ end:
361 732
362 if (bio_stdout != NULL) BIO_free(bio_stdout); 733 if (bio_stdout != NULL) BIO_free(bio_stdout);
363 734
735#ifndef OPENSSL_NO_RSA
736 free_tmp_rsa();
737#endif
738 ENGINE_cleanup();
739 CRYPTO_cleanup_all_ex_data();
740 ERR_free_strings();
364 ERR_remove_state(0); 741 ERR_remove_state(0);
365 EVP_cleanup(); 742 EVP_cleanup();
366 CRYPTO_mem_leaks(bio_err); 743 CRYPTO_mem_leaks(bio_err);
744 if (bio_err != NULL) BIO_free(bio_err);
367 EXIT(ret); 745 EXIT(ret);
368 } 746 }
369 747
748int doit_biopair(SSL *s_ssl, SSL *c_ssl, long count,
749 clock_t *s_time, clock_t *c_time)
750 {
751 long cw_num = count, cr_num = count, sw_num = count, sr_num = count;
752 BIO *s_ssl_bio = NULL, *c_ssl_bio = NULL;
753 BIO *server = NULL, *server_io = NULL, *client = NULL, *client_io = NULL;
754 int ret = 1;
755
756 size_t bufsiz = 256; /* small buffer for testing */
757
758 if (!BIO_new_bio_pair(&server, bufsiz, &server_io, bufsiz))
759 goto err;
760 if (!BIO_new_bio_pair(&client, bufsiz, &client_io, bufsiz))
761 goto err;
762
763 s_ssl_bio = BIO_new(BIO_f_ssl());
764 if (!s_ssl_bio)
765 goto err;
766
767 c_ssl_bio = BIO_new(BIO_f_ssl());
768 if (!c_ssl_bio)
769 goto err;
770
771 SSL_set_connect_state(c_ssl);
772 SSL_set_bio(c_ssl, client, client);
773 (void)BIO_set_ssl(c_ssl_bio, c_ssl, BIO_NOCLOSE);
774
775 SSL_set_accept_state(s_ssl);
776 SSL_set_bio(s_ssl, server, server);
777 (void)BIO_set_ssl(s_ssl_bio, s_ssl, BIO_NOCLOSE);
778
779 do
780 {
781 /* c_ssl_bio: SSL filter BIO
782 *
783 * client: pseudo-I/O for SSL library
784 *
785 * client_io: client's SSL communication; usually to be
786 * relayed over some I/O facility, but in this
787 * test program, we're the server, too:
788 *
789 * server_io: server's SSL communication
790 *
791 * server: pseudo-I/O for SSL library
792 *
793 * s_ssl_bio: SSL filter BIO
794 *
795 * The client and the server each employ a "BIO pair":
796 * client + client_io, server + server_io.
797 * BIO pairs are symmetric. A BIO pair behaves similar
798 * to a non-blocking socketpair (but both endpoints must
799 * be handled by the same thread).
800 * [Here we could connect client and server to the ends
801 * of a single BIO pair, but then this code would be less
802 * suitable as an example for BIO pairs in general.]
803 *
804 * Useful functions for querying the state of BIO pair endpoints:
805 *
806 * BIO_ctrl_pending(bio) number of bytes we can read now
807 * BIO_ctrl_get_read_request(bio) number of bytes needed to fulfil
808 * other side's read attempt
809 * BIO_ctrl_get_write_guarantee(bio) number of bytes we can write now
810 *
811 * ..._read_request is never more than ..._write_guarantee;
812 * it depends on the application which one you should use.
813 */
814
815 /* We have non-blocking behaviour throughout this test program, but
816 * can be sure that there is *some* progress in each iteration; so
817 * we don't have to worry about ..._SHOULD_READ or ..._SHOULD_WRITE
818 * -- we just try everything in each iteration
819 */
820
821 {
822 /* CLIENT */
823
824 MS_STATIC char cbuf[1024*8];
825 int i, r;
826 clock_t c_clock = clock();
827
828 if (debug)
829 if (SSL_in_init(c_ssl))
830 printf("client waiting in SSL_connect - %s\n",
831 SSL_state_string_long(c_ssl));
832
833 if (cw_num > 0)
834 {
835 /* Write to server. */
836
837 if (cw_num > (long)sizeof cbuf)
838 i = sizeof cbuf;
839 else
840 i = (int)cw_num;
841 r = BIO_write(c_ssl_bio, cbuf, i);
842 if (r < 0)
843 {
844 if (!BIO_should_retry(c_ssl_bio))
845 {
846 fprintf(stderr,"ERROR in CLIENT\n");
847 goto err;
848 }
849 /* BIO_should_retry(...) can just be ignored here.
850 * The library expects us to call BIO_write with
851 * the same arguments again, and that's what we will
852 * do in the next iteration. */
853 }
854 else if (r == 0)
855 {
856 fprintf(stderr,"SSL CLIENT STARTUP FAILED\n");
857 goto err;
858 }
859 else
860 {
861 if (debug)
862 printf("client wrote %d\n", r);
863 cw_num -= r;
864 }
865 }
866
867 if (cr_num > 0)
868 {
869 /* Read from server. */
870
871 r = BIO_read(c_ssl_bio, cbuf, sizeof(cbuf));
872 if (r < 0)
873 {
874 if (!BIO_should_retry(c_ssl_bio))
875 {
876 fprintf(stderr,"ERROR in CLIENT\n");
877 goto err;
878 }
879 /* Again, "BIO_should_retry" can be ignored. */
880 }
881 else if (r == 0)
882 {
883 fprintf(stderr,"SSL CLIENT STARTUP FAILED\n");
884 goto err;
885 }
886 else
887 {
888 if (debug)
889 printf("client read %d\n", r);
890 cr_num -= r;
891 }
892 }
893
894 /* c_time and s_time increments will typically be very small
895 * (depending on machine speed and clock tick intervals),
896 * but sampling over a large number of connections should
897 * result in fairly accurate figures. We cannot guarantee
898 * a lot, however -- if each connection lasts for exactly
899 * one clock tick, it will be counted only for the client
900 * or only for the server or even not at all.
901 */
902 *c_time += (clock() - c_clock);
903 }
904
905 {
906 /* SERVER */
907
908 MS_STATIC char sbuf[1024*8];
909 int i, r;
910 clock_t s_clock = clock();
911
912 if (debug)
913 if (SSL_in_init(s_ssl))
914 printf("server waiting in SSL_accept - %s\n",
915 SSL_state_string_long(s_ssl));
916
917 if (sw_num > 0)
918 {
919 /* Write to client. */
920
921 if (sw_num > (long)sizeof sbuf)
922 i = sizeof sbuf;
923 else
924 i = (int)sw_num;
925 r = BIO_write(s_ssl_bio, sbuf, i);
926 if (r < 0)
927 {
928 if (!BIO_should_retry(s_ssl_bio))
929 {
930 fprintf(stderr,"ERROR in SERVER\n");
931 goto err;
932 }
933 /* Ignore "BIO_should_retry". */
934 }
935 else if (r == 0)
936 {
937 fprintf(stderr,"SSL SERVER STARTUP FAILED\n");
938 goto err;
939 }
940 else
941 {
942 if (debug)
943 printf("server wrote %d\n", r);
944 sw_num -= r;
945 }
946 }
947
948 if (sr_num > 0)
949 {
950 /* Read from client. */
951
952 r = BIO_read(s_ssl_bio, sbuf, sizeof(sbuf));
953 if (r < 0)
954 {
955 if (!BIO_should_retry(s_ssl_bio))
956 {
957 fprintf(stderr,"ERROR in SERVER\n");
958 goto err;
959 }
960 /* blah, blah */
961 }
962 else if (r == 0)
963 {
964 fprintf(stderr,"SSL SERVER STARTUP FAILED\n");
965 goto err;
966 }
967 else
968 {
969 if (debug)
970 printf("server read %d\n", r);
971 sr_num -= r;
972 }
973 }
974
975 *s_time += (clock() - s_clock);
976 }
977
978 {
979 /* "I/O" BETWEEN CLIENT AND SERVER. */
980
981 size_t r1, r2;
982 BIO *io1 = server_io, *io2 = client_io;
983 /* we use the non-copying interface for io1
984 * and the standard BIO_write/BIO_read interface for io2
985 */
986
987 static int prev_progress = 1;
988 int progress = 0;
989
990 /* io1 to io2 */
991 do
992 {
993 size_t num;
994 int r;
995
996 r1 = BIO_ctrl_pending(io1);
997 r2 = BIO_ctrl_get_write_guarantee(io2);
998
999 num = r1;
1000 if (r2 < num)
1001 num = r2;
1002 if (num)
1003 {
1004 char *dataptr;
1005
1006 if (INT_MAX < num) /* yeah, right */
1007 num = INT_MAX;
1008
1009 r = BIO_nread(io1, &dataptr, (int)num);
1010 assert(r > 0);
1011 assert(r <= (int)num);
1012 /* possibly r < num (non-contiguous data) */
1013 num = r;
1014 r = BIO_write(io2, dataptr, (int)num);
1015 if (r != (int)num) /* can't happen */
1016 {
1017 fprintf(stderr, "ERROR: BIO_write could not write "
1018 "BIO_ctrl_get_write_guarantee() bytes");
1019 goto err;
1020 }
1021 progress = 1;
1022
1023 if (debug)
1024 printf((io1 == client_io) ?
1025 "C->S relaying: %d bytes\n" :
1026 "S->C relaying: %d bytes\n",
1027 (int)num);
1028 }
1029 }
1030 while (r1 && r2);
1031
1032 /* io2 to io1 */
1033 {
1034 size_t num;
1035 int r;
1036
1037 r1 = BIO_ctrl_pending(io2);
1038 r2 = BIO_ctrl_get_read_request(io1);
1039 /* here we could use ..._get_write_guarantee instead of
1040 * ..._get_read_request, but by using the latter
1041 * we test restartability of the SSL implementation
1042 * more thoroughly */
1043 num = r1;
1044 if (r2 < num)
1045 num = r2;
1046 if (num)
1047 {
1048 char *dataptr;
1049
1050 if (INT_MAX < num)
1051 num = INT_MAX;
1052
1053 if (num > 1)
1054 --num; /* test restartability even more thoroughly */
1055
1056 r = BIO_nwrite0(io1, &dataptr);
1057 assert(r > 0);
1058 if (r < (int)num)
1059 num = r;
1060 r = BIO_read(io2, dataptr, (int)num);
1061 if (r != (int)num) /* can't happen */
1062 {
1063 fprintf(stderr, "ERROR: BIO_read could not read "
1064 "BIO_ctrl_pending() bytes");
1065 goto err;
1066 }
1067 progress = 1;
1068 r = BIO_nwrite(io1, &dataptr, (int)num);
1069 if (r != (int)num) /* can't happen */
1070 {
1071 fprintf(stderr, "ERROR: BIO_nwrite() did not accept "
1072 "BIO_nwrite0() bytes");
1073 goto err;
1074 }
1075
1076 if (debug)
1077 printf((io2 == client_io) ?
1078 "C->S relaying: %d bytes\n" :
1079 "S->C relaying: %d bytes\n",
1080 (int)num);
1081 }
1082 } /* no loop, BIO_ctrl_get_read_request now returns 0 anyway */
1083
1084 if (!progress && !prev_progress)
1085 if (cw_num > 0 || cr_num > 0 || sw_num > 0 || sr_num > 0)
1086 {
1087 fprintf(stderr, "ERROR: got stuck\n");
1088 if (strcmp("SSLv2", SSL_get_version(c_ssl)) == 0)
1089 {
1090 fprintf(stderr, "This can happen for SSL2 because "
1091 "CLIENT-FINISHED and SERVER-VERIFY are written \n"
1092 "concurrently ...");
1093 if (strncmp("2SCF", SSL_state_string(c_ssl), 4) == 0
1094 && strncmp("2SSV", SSL_state_string(s_ssl), 4) == 0)
1095 {
1096 fprintf(stderr, " ok.\n");
1097 goto end;
1098 }
1099 }
1100 fprintf(stderr, " ERROR.\n");
1101 goto err;
1102 }
1103 prev_progress = progress;
1104 }
1105 }
1106 while (cw_num > 0 || cr_num > 0 || sw_num > 0 || sr_num > 0);
1107
1108 if (verbose)
1109 print_details(c_ssl, "DONE via BIO pair: ");
1110end:
1111 ret = 0;
1112
1113 err:
1114 ERR_print_errors(bio_err);
1115
1116 if (server)
1117 BIO_free(server);
1118 if (server_io)
1119 BIO_free(server_io);
1120 if (client)
1121 BIO_free(client);
1122 if (client_io)
1123 BIO_free(client_io);
1124 if (s_ssl_bio)
1125 BIO_free(s_ssl_bio);
1126 if (c_ssl_bio)
1127 BIO_free(c_ssl_bio);
1128
1129 return ret;
1130 }
1131
1132
370#define W_READ 1 1133#define W_READ 1
371#define W_WRITE 2 1134#define W_WRITE 2
372#define C_DONE 1 1135#define C_DONE 1
373#define S_DONE 2 1136#define S_DONE 2
374 1137
375int doit(s_ssl,c_ssl,count) 1138int doit(SSL *s_ssl, SSL *c_ssl, long count)
376SSL *s_ssl,*c_ssl;
377long count;
378 { 1139 {
379 MS_STATIC char cbuf[1024*8],sbuf[1024*8]; 1140 MS_STATIC char cbuf[1024*8],sbuf[1024*8];
380 long cw_num=count,cr_num=count; 1141 long cw_num=count,cr_num=count;
@@ -390,7 +1151,6 @@ long count;
390 int done=0; 1151 int done=0;
391 int c_write,s_write; 1152 int c_write,s_write;
392 int do_server=0,do_client=0; 1153 int do_server=0,do_client=0;
393 SSL_CIPHER *ciph;
394 1154
395 c_to_s=BIO_new(BIO_s_mem()); 1155 c_to_s=BIO_new(BIO_s_mem());
396 s_to_c=BIO_new(BIO_s_mem()); 1156 s_to_c=BIO_new(BIO_s_mem());
@@ -640,16 +1400,12 @@ long count;
640 if ((done & S_DONE) && (done & C_DONE)) break; 1400 if ((done & S_DONE) && (done & C_DONE)) break;
641 } 1401 }
642 1402
643 ciph=SSL_get_current_cipher(c_ssl);
644 if (verbose) 1403 if (verbose)
645 fprintf(stdout,"DONE, protocol %s, cipher %s, %s\n", 1404 print_details(c_ssl, "DONE: ");
646 SSL_get_version(c_ssl),
647 SSL_CIPHER_get_version(ciph),
648 SSL_CIPHER_get_name(ciph));
649 ret=0; 1405 ret=0;
650err: 1406err:
651 /* We have to set the BIO's to NULL otherwise they will be 1407 /* We have to set the BIO's to NULL otherwise they will be
652 * Free()ed twice. Once when th s_ssl is SSL_free()ed and 1408 * OPENSSL_free()ed twice. Once when th s_ssl is SSL_free()ed and
653 * again when c_ssl is SSL_free()ed. 1409 * again when c_ssl is SSL_free()ed.
654 * This is a hack required because s_ssl and c_ssl are sharing the same 1410 * This is a hack required because s_ssl and c_ssl are sharing the same
655 * BIO structure and SSL_set_bio() and SSL_free() automatically 1411 * BIO structure and SSL_set_bio() and SSL_free() automatically
@@ -673,9 +1429,7 @@ err:
673 return(ret); 1429 return(ret);
674 } 1430 }
675 1431
676int MS_CALLBACK verify_callback(ok, ctx) 1432static int MS_CALLBACK verify_callback(int ok, X509_STORE_CTX *ctx)
677int ok;
678X509_STORE_CTX *ctx;
679 { 1433 {
680 char *s,buf[256]; 1434 char *s,buf[256];
681 1435
@@ -703,49 +1457,145 @@ X509_STORE_CTX *ctx;
703 return(ok); 1457 return(ok);
704 } 1458 }
705 1459
706#ifndef NO_DH 1460static int MS_CALLBACK app_verify_callback(X509_STORE_CTX *ctx, void *arg)
707static unsigned char dh512_p[]={ 1461 {
708 0xDA,0x58,0x3C,0x16,0xD9,0x85,0x22,0x89,0xD0,0xE4,0xAF,0x75, 1462 char *s = NULL,buf[256];
709 0x6F,0x4C,0xCA,0x92,0xDD,0x4B,0xE5,0x33,0xB8,0x04,0xFB,0x0F, 1463 int ok=1;
710 0xED,0x94,0xEF,0x9C,0x8A,0x44,0x03,0xED,0x57,0x46,0x50,0xD3, 1464
711 0x69,0x99,0xDB,0x29,0xD7,0x76,0x27,0x6B,0xA2,0xD3,0xD4,0x12, 1465 fprintf(stderr, "In app_verify_callback, allowing cert. ");
712 0xE2,0x18,0xF4,0xDD,0x1E,0x08,0x4C,0xF6,0xD8,0x00,0x3E,0x7C, 1466 fprintf(stderr, "Arg is: %s\n", (char *)arg);
713 0x47,0x74,0xE8,0x33, 1467 fprintf(stderr, "Finished printing do we have a context? 0x%x a cert? 0x%x\n",
714 }; 1468 (unsigned int)ctx, (unsigned int)ctx->cert);
715static unsigned char dh512_g[]={ 1469 if (ctx->cert)
716 0x02, 1470 s=X509_NAME_oneline(X509_get_subject_name(ctx->cert),buf,256);
717 }; 1471 if (s != NULL)
1472 {
1473 fprintf(stderr,"cert depth=%d %s\n",ctx->error_depth,buf);
1474 }
1475
1476 return(ok);
1477 }
1478
1479#ifndef OPENSSL_NO_RSA
1480static RSA *rsa_tmp=NULL;
1481
1482static RSA MS_CALLBACK *tmp_rsa_cb(SSL *s, int is_export, int keylength)
1483 {
1484 if (rsa_tmp == NULL)
1485 {
1486 BIO_printf(bio_err,"Generating temp (%d bit) RSA key...",keylength);
1487 (void)BIO_flush(bio_err);
1488 rsa_tmp=RSA_generate_key(keylength,RSA_F4,NULL,NULL);
1489 BIO_printf(bio_err,"\n");
1490 (void)BIO_flush(bio_err);
1491 }
1492 return(rsa_tmp);
1493 }
1494
1495static void free_tmp_rsa(void)
1496 {
1497 if (rsa_tmp != NULL)
1498 {
1499 RSA_free(rsa_tmp);
1500 rsa_tmp = NULL;
1501 }
1502 }
1503#endif
718 1504
1505#ifndef OPENSSL_NO_DH
1506/* These DH parameters have been generated as follows:
1507 * $ openssl dhparam -C -noout 512
1508 * $ openssl dhparam -C -noout 1024
1509 * $ openssl dhparam -C -noout -dsaparam 1024
1510 * (The third function has been renamed to avoid name conflicts.)
1511 */
719static DH *get_dh512() 1512static DH *get_dh512()
720 { 1513 {
721 DH *dh=NULL; 1514 static unsigned char dh512_p[]={
1515 0xCB,0xC8,0xE1,0x86,0xD0,0x1F,0x94,0x17,0xA6,0x99,0xF0,0xC6,
1516 0x1F,0x0D,0xAC,0xB6,0x25,0x3E,0x06,0x39,0xCA,0x72,0x04,0xB0,
1517 0x6E,0xDA,0xC0,0x61,0xE6,0x7A,0x77,0x25,0xE8,0x3B,0xB9,0x5F,
1518 0x9A,0xB6,0xB5,0xFE,0x99,0x0B,0xA1,0x93,0x4E,0x35,0x33,0xB8,
1519 0xE1,0xF1,0x13,0x4F,0x59,0x1A,0xD2,0x57,0xC0,0x26,0x21,0x33,
1520 0x02,0xC5,0xAE,0x23,
1521 };
1522 static unsigned char dh512_g[]={
1523 0x02,
1524 };
1525 DH *dh;
722 1526
723 if ((dh=DH_new()) == NULL) return(NULL); 1527 if ((dh=DH_new()) == NULL) return(NULL);
724 dh->p=BN_bin2bn(dh512_p,sizeof(dh512_p),NULL); 1528 dh->p=BN_bin2bn(dh512_p,sizeof(dh512_p),NULL);
725 dh->g=BN_bin2bn(dh512_g,sizeof(dh512_g),NULL); 1529 dh->g=BN_bin2bn(dh512_g,sizeof(dh512_g),NULL);
726 if ((dh->p == NULL) || (dh->g == NULL)) 1530 if ((dh->p == NULL) || (dh->g == NULL))
727 return(NULL); 1531 { DH_free(dh); return(NULL); }
728 return(dh); 1532 return(dh);
729 } 1533 }
730#endif
731 1534
732static RSA MS_CALLBACK *tmp_rsa_cb(s,export) 1535static DH *get_dh1024()
733SSL *s;
734int export;
735 { 1536 {
736 static RSA *rsa_tmp=NULL; 1537 static unsigned char dh1024_p[]={
1538 0xF8,0x81,0x89,0x7D,0x14,0x24,0xC5,0xD1,0xE6,0xF7,0xBF,0x3A,
1539 0xE4,0x90,0xF4,0xFC,0x73,0xFB,0x34,0xB5,0xFA,0x4C,0x56,0xA2,
1540 0xEA,0xA7,0xE9,0xC0,0xC0,0xCE,0x89,0xE1,0xFA,0x63,0x3F,0xB0,
1541 0x6B,0x32,0x66,0xF1,0xD1,0x7B,0xB0,0x00,0x8F,0xCA,0x87,0xC2,
1542 0xAE,0x98,0x89,0x26,0x17,0xC2,0x05,0xD2,0xEC,0x08,0xD0,0x8C,
1543 0xFF,0x17,0x52,0x8C,0xC5,0x07,0x93,0x03,0xB1,0xF6,0x2F,0xB8,
1544 0x1C,0x52,0x47,0x27,0x1B,0xDB,0xD1,0x8D,0x9D,0x69,0x1D,0x52,
1545 0x4B,0x32,0x81,0xAA,0x7F,0x00,0xC8,0xDC,0xE6,0xD9,0xCC,0xC1,
1546 0x11,0x2D,0x37,0x34,0x6C,0xEA,0x02,0x97,0x4B,0x0E,0xBB,0xB1,
1547 0x71,0x33,0x09,0x15,0xFD,0xDD,0x23,0x87,0x07,0x5E,0x89,0xAB,
1548 0x6B,0x7C,0x5F,0xEC,0xA6,0x24,0xDC,0x53,
1549 };
1550 static unsigned char dh1024_g[]={
1551 0x02,
1552 };
1553 DH *dh;
737 1554
738 if (rsa_tmp == NULL) 1555 if ((dh=DH_new()) == NULL) return(NULL);
739 { 1556 dh->p=BN_bin2bn(dh1024_p,sizeof(dh1024_p),NULL);
740 BIO_printf(bio_err,"Generating temp (512 bit) RSA key..."); 1557 dh->g=BN_bin2bn(dh1024_g,sizeof(dh1024_g),NULL);
741 BIO_flush(bio_err); 1558 if ((dh->p == NULL) || (dh->g == NULL))
742#ifndef NO_RSA 1559 { DH_free(dh); return(NULL); }
743 rsa_tmp=RSA_generate_key(512,RSA_F4,NULL,NULL); 1560 return(dh);
744#endif
745 BIO_printf(bio_err,"\n");
746 BIO_flush(bio_err);
747 }
748 return(rsa_tmp);
749 } 1561 }
750 1562
1563static DH *get_dh1024dsa()
1564 {
1565 static unsigned char dh1024_p[]={
1566 0xC8,0x00,0xF7,0x08,0x07,0x89,0x4D,0x90,0x53,0xF3,0xD5,0x00,
1567 0x21,0x1B,0xF7,0x31,0xA6,0xA2,0xDA,0x23,0x9A,0xC7,0x87,0x19,
1568 0x3B,0x47,0xB6,0x8C,0x04,0x6F,0xFF,0xC6,0x9B,0xB8,0x65,0xD2,
1569 0xC2,0x5F,0x31,0x83,0x4A,0xA7,0x5F,0x2F,0x88,0x38,0xB6,0x55,
1570 0xCF,0xD9,0x87,0x6D,0x6F,0x9F,0xDA,0xAC,0xA6,0x48,0xAF,0xFC,
1571 0x33,0x84,0x37,0x5B,0x82,0x4A,0x31,0x5D,0xE7,0xBD,0x52,0x97,
1572 0xA1,0x77,0xBF,0x10,0x9E,0x37,0xEA,0x64,0xFA,0xCA,0x28,0x8D,
1573 0x9D,0x3B,0xD2,0x6E,0x09,0x5C,0x68,0xC7,0x45,0x90,0xFD,0xBB,
1574 0x70,0xC9,0x3A,0xBB,0xDF,0xD4,0x21,0x0F,0xC4,0x6A,0x3C,0xF6,
1575 0x61,0xCF,0x3F,0xD6,0x13,0xF1,0x5F,0xBC,0xCF,0xBC,0x26,0x9E,
1576 0xBC,0x0B,0xBD,0xAB,0x5D,0xC9,0x54,0x39,
1577 };
1578 static unsigned char dh1024_g[]={
1579 0x3B,0x40,0x86,0xE7,0xF3,0x6C,0xDE,0x67,0x1C,0xCC,0x80,0x05,
1580 0x5A,0xDF,0xFE,0xBD,0x20,0x27,0x74,0x6C,0x24,0xC9,0x03,0xF3,
1581 0xE1,0x8D,0xC3,0x7D,0x98,0x27,0x40,0x08,0xB8,0x8C,0x6A,0xE9,
1582 0xBB,0x1A,0x3A,0xD6,0x86,0x83,0x5E,0x72,0x41,0xCE,0x85,0x3C,
1583 0xD2,0xB3,0xFC,0x13,0xCE,0x37,0x81,0x9E,0x4C,0x1C,0x7B,0x65,
1584 0xD3,0xE6,0xA6,0x00,0xF5,0x5A,0x95,0x43,0x5E,0x81,0xCF,0x60,
1585 0xA2,0x23,0xFC,0x36,0xA7,0x5D,0x7A,0x4C,0x06,0x91,0x6E,0xF6,
1586 0x57,0xEE,0x36,0xCB,0x06,0xEA,0xF5,0x3D,0x95,0x49,0xCB,0xA7,
1587 0xDD,0x81,0xDF,0x80,0x09,0x4A,0x97,0x4D,0xA8,0x22,0x72,0xA1,
1588 0x7F,0xC4,0x70,0x56,0x70,0xE8,0x20,0x10,0x18,0x8F,0x2E,0x60,
1589 0x07,0xE7,0x68,0x1A,0x82,0x5D,0x32,0xA2,
1590 };
1591 DH *dh;
751 1592
1593 if ((dh=DH_new()) == NULL) return(NULL);
1594 dh->p=BN_bin2bn(dh1024_p,sizeof(dh1024_p),NULL);
1595 dh->g=BN_bin2bn(dh1024_g,sizeof(dh1024_g),NULL);
1596 if ((dh->p == NULL) || (dh->g == NULL))
1597 { DH_free(dh); return(NULL); }
1598 dh->length = 160;
1599 return(dh);
1600 }
1601#endif