Update usage info
[openssl.git] / ssl / ssltest.c
1 /* ssl/ssltest.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
5  * This package is an SSL implementation written
6  * by Eric Young (eay@cryptsoft.com).
7  * The implementation was written so as to conform with Netscapes SSL.
8  * 
9  * This library is free for commercial and non-commercial use as long as
10  * the following conditions are aheared to.  The following conditions
11  * apply to all code found in this distribution, be it the RC4, RSA,
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13  * included with this distribution is covered by the same copyright terms
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15  * 
16  * Copyright remains Eric Young's, and as such any Copyright notices in
17  * the code are not to be removed.
18  * If this package is used in a product, Eric Young should be given attribution
19  * as the author of the parts of the library used.
20  * This can be in the form of a textual message at program startup or
21  * in documentation (online or textual) provided with the package.
22  * 
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  * 3. All advertising materials mentioning features or use of this software
32  *    must display the following acknowledgement:
33  *    "This product includes cryptographic software written by
34  *     Eric Young (eay@cryptsoft.com)"
35  *    The word 'cryptographic' can be left out if the rouines from the library
36  *    being used are not cryptographic related :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from 
38  *    the apps directory (application code) you must include an acknowledgement:
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  * 
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51  * SUCH DAMAGE.
52  * 
53  * The licence and distribution terms for any publically available version or
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
55  * copied and put under another distribution licence
56  * [including the GNU Public Licence.]
57  */
58
59 #include <assert.h>
60 #include <errno.h>
61 #include <limits.h>
62 #include <stdio.h>
63 #include <stdlib.h>
64 #include <string.h>
65 #include <time.h>
66
67 #include "openssl/e_os.h"
68
69 #include <openssl/bio.h>
70 #include <openssl/crypto.h>
71 #include <openssl/evp.h>
72 #include <openssl/x509.h>
73 #include <openssl/ssl.h>
74 #include <openssl/err.h>
75 #include <openssl/rand.h>
76 #ifdef WINDOWS
77 #include "../crypto/bio/bss_file.c"
78 #endif
79
80 #ifdef VMS
81 #  define TEST_SERVER_CERT "SYS$DISK:[-.APPS]SERVER.PEM"
82 #  define TEST_CLIENT_CERT "SYS$DISK:[-.APPS]CLIENT.PEM"
83 #else
84 #  define TEST_SERVER_CERT "../apps/server.pem"
85 #  define TEST_CLIENT_CERT "../apps/client.pem"
86 #endif
87
88 static int MS_CALLBACK verify_callback(int ok, X509_STORE_CTX *ctx);
89 #ifndef NO_RSA
90 static RSA MS_CALLBACK *tmp_rsa_cb(SSL *s, int is_export,int keylength);
91 #endif
92 #ifndef NO_DH
93 static DH *get_dh512(void);
94 static DH *get_dh1024(void);
95 static DH *get_dh1024dsa(void);
96 #endif
97
98 static BIO *bio_err=NULL;
99 static BIO *bio_stdout=NULL;
100
101 static char *cipher=NULL;
102 static int verbose=0;
103 static int debug=0;
104 #if 0
105 /* Not used yet. */
106 #ifdef FIONBIO
107 static int s_nbio=0;
108 #endif
109 #endif
110
111 static const char rnd_seed[] = "string to make the random number generator think it has entropy";
112
113 int doit_biopair(SSL *s_ssl,SSL *c_ssl,long bytes,clock_t *s_time,clock_t *c_time);
114 int doit(SSL *s_ssl,SSL *c_ssl,long bytes);
115 static void sv_usage(void)
116         {
117         fprintf(stderr,"usage: ssltest [args ...]\n");
118         fprintf(stderr,"\n");
119         fprintf(stderr," -server_auth  - check server certificate\n");
120         fprintf(stderr," -client_auth  - do client authentication\n");
121         fprintf(stderr," -v            - more output\n");
122         fprintf(stderr," -d            - debug output\n");
123         fprintf(stderr," -reuse        - use session-id reuse\n");
124         fprintf(stderr," -num <val>    - number of connections to perform\n");
125         fprintf(stderr," -bytes <val>  - number of bytes to swap between client/server\n");
126 #ifndef NO_DH
127         fprintf(stderr," -dhe1024      - use 1024 bit key (safe prime) for DHE\n");
128         fprintf(stderr," -dhe1024dsa   - use 1024 bit key (with 160-bit subprime) for DHE\n");
129         fprintf(stderr," -no_dhe       - disable DHE\n");
130 #endif
131 #ifndef NO_SSL2
132         fprintf(stderr," -ssl2         - use SSLv2\n");
133 #endif
134 #ifndef NO_SSL3
135         fprintf(stderr," -ssl3         - use SSLv3\n");
136 #endif
137 #ifndef NO_TLS1
138         fprintf(stderr," -tls1         - use TLSv1\n");
139 #endif
140         fprintf(stderr," -CApath arg   - PEM format directory of CA's\n");
141         fprintf(stderr," -CAfile arg   - PEM format file of CA's\n");
142         fprintf(stderr," -cert arg     - Server certificate file\n");
143         fprintf(stderr," -key arg      - Server key file (default: same as -cert)\n");
144         fprintf(stderr," -c_cert arg   - Client certificate file\n");
145         fprintf(stderr," -c_key arg    - Client key file (default: same as -c_cert)\n");
146         fprintf(stderr," -cipher arg   - The cipher list\n");
147         fprintf(stderr," -bio_pair     - Use BIO pairs\n");
148         fprintf(stderr," -f            - Test even cases that can't work\n");
149         fprintf(stderr," -time         - measure processor time used by client and server\n");
150         }
151
152 static void print_details(SSL *c_ssl, const char *prefix)
153         {
154         SSL_CIPHER *ciph;
155         X509 *cert;
156                 
157         ciph=SSL_get_current_cipher(c_ssl);
158         BIO_printf(bio_stdout,"%s%s, cipher %s %s",
159                 prefix,
160                 SSL_get_version(c_ssl),
161                 SSL_CIPHER_get_version(ciph),
162                 SSL_CIPHER_get_name(ciph));
163         cert=SSL_get_peer_certificate(c_ssl);
164         if (cert != NULL)
165                 {
166                 EVP_PKEY *pkey = X509_get_pubkey(cert);
167                 if (pkey != NULL)
168                         {
169                         if (0) 
170                                 ;
171 #ifndef NO_RSA
172                         else if (pkey->type == EVP_PKEY_RSA && pkey->pkey.rsa != NULL
173                                 && pkey->pkey.rsa->n != NULL)
174                                 {
175                                 BIO_printf(bio_stdout, ", %d bit RSA",
176                                         BN_num_bits(pkey->pkey.rsa->n));
177                                 }
178 #endif
179 #ifndef NO_DSA
180                         else if (pkey->type == EVP_PKEY_DSA && pkey->pkey.dsa != NULL
181                                 && pkey->pkey.dsa->p != NULL)
182                                 {
183                                 BIO_printf(bio_stdout, ", %d bit DSA",
184                                         BN_num_bits(pkey->pkey.dsa->p));
185                                 }
186 #endif
187                         EVP_PKEY_free(pkey);
188                         }
189                 X509_free(cert);
190                 }
191         /* The SSL API does not allow us to look at temporary RSA/DH keys,
192          * otherwise we should print their lengths too */
193         BIO_printf(bio_stdout,"\n");
194         }
195
196 int main(int argc, char *argv[])
197         {
198         char *CApath=NULL,*CAfile=NULL;
199         int badop=0;
200         int bio_pair=0;
201         int force=0;
202         int tls1=0,ssl2=0,ssl3=0,ret=1;
203         int client_auth=0;
204         int server_auth=0,i;
205         char *server_cert=TEST_SERVER_CERT;
206         char *server_key=NULL;
207         char *client_cert=TEST_CLIENT_CERT;
208         char *client_key=NULL;
209         SSL_CTX *s_ctx=NULL;
210         SSL_CTX *c_ctx=NULL;
211         SSL_METHOD *meth=NULL;
212         SSL *c_ssl,*s_ssl;
213         int number=1,reuse=0;
214         long bytes=1L;
215 #ifndef NO_DH
216         DH *dh;
217         int dhe1024 = 0, dhe1024dsa = 0;
218 #endif
219         int no_dhe = 0;
220         int print_time = 0;
221         clock_t s_time = 0, c_time = 0;
222
223         verbose = 0;
224         debug = 0;
225         cipher = 0;
226         
227         CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
228
229         RAND_seed(rnd_seed, sizeof rnd_seed);
230
231         bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
232         bio_stdout=BIO_new_fp(stdout,BIO_NOCLOSE);
233
234         argc--;
235         argv++;
236
237         while (argc >= 1)
238                 {
239                 if      (strcmp(*argv,"-server_auth") == 0)
240                         server_auth=1;
241                 else if (strcmp(*argv,"-client_auth") == 0)
242                         client_auth=1;
243                 else if (strcmp(*argv,"-v") == 0)
244                         verbose=1;
245                 else if (strcmp(*argv,"-d") == 0)
246                         debug=1;
247                 else if (strcmp(*argv,"-reuse") == 0)
248                         reuse=1;
249 #ifndef NO_DH
250                 else if (strcmp(*argv,"-dhe1024") == 0)
251                         dhe1024=1;
252                 else if (strcmp(*argv,"-dhe1024dsa") == 0)
253                         dhe1024dsa=1;
254 #endif
255                 else if (strcmp(*argv,"-no_dhe") == 0)
256                         no_dhe=1;
257                 else if (strcmp(*argv,"-ssl2") == 0)
258                         ssl2=1;
259                 else if (strcmp(*argv,"-tls1") == 0)
260                         tls1=1;
261                 else if (strcmp(*argv,"-ssl3") == 0)
262                         ssl3=1;
263                 else if (strncmp(*argv,"-num",4) == 0)
264                         {
265                         if (--argc < 1) goto bad;
266                         number= atoi(*(++argv));
267                         if (number == 0) number=1;
268                         }
269                 else if (strcmp(*argv,"-bytes") == 0)
270                         {
271                         if (--argc < 1) goto bad;
272                         bytes= atol(*(++argv));
273                         if (bytes == 0L) bytes=1L;
274                         i=strlen(argv[0]);
275                         if (argv[0][i-1] == 'k') bytes*=1024L;
276                         if (argv[0][i-1] == 'm') bytes*=1024L*1024L;
277                         }
278                 else if (strcmp(*argv,"-cert") == 0)
279                         {
280                         if (--argc < 1) goto bad;
281                         server_cert= *(++argv);
282                         }
283                 else if (strcmp(*argv,"-s_cert") == 0)
284                         {
285                         if (--argc < 1) goto bad;
286                         server_cert= *(++argv);
287                         }
288                 else if (strcmp(*argv,"-key") == 0)
289                         {
290                         if (--argc < 1) goto bad;
291                         server_key= *(++argv);
292                         }
293                 else if (strcmp(*argv,"-s_key") == 0)
294                         {
295                         if (--argc < 1) goto bad;
296                         server_key= *(++argv);
297                         }
298                 else if (strcmp(*argv,"-c_cert") == 0)
299                         {
300                         if (--argc < 1) goto bad;
301                         client_cert= *(++argv);
302                         }
303                 else if (strcmp(*argv,"-c_key") == 0)
304                         {
305                         if (--argc < 1) goto bad;
306                         client_key= *(++argv);
307                         }
308                 else if (strcmp(*argv,"-cipher") == 0)
309                         {
310                         if (--argc < 1) goto bad;
311                         cipher= *(++argv);
312                         }
313                 else if (strcmp(*argv,"-CApath") == 0)
314                         {
315                         if (--argc < 1) goto bad;
316                         CApath= *(++argv);
317                         }
318                 else if (strcmp(*argv,"-CAfile") == 0)
319                         {
320                         if (--argc < 1) goto bad;
321                         CAfile= *(++argv);
322                         }
323                 else if (strcmp(*argv,"-bio_pair") == 0)
324                         {
325                         bio_pair = 1;
326                         }
327                 else if (strcmp(*argv,"-f") == 0)
328                         {
329                         force = 1;
330                         }
331                 else if (strcmp(*argv,"-time") == 0)
332                         {
333                         print_time = 1;
334                         }
335                 else
336                         {
337                         fprintf(stderr,"unknown option %s\n",*argv);
338                         badop=1;
339                         break;
340                         }
341                 argc--;
342                 argv++;
343                 }
344         if (badop)
345                 {
346 bad:
347                 sv_usage();
348                 goto end;
349                 }
350
351         if (!ssl2 && !ssl3 && !tls1 && number > 1 && !reuse && !force)
352                 {
353                 fprintf(stderr, "This case cannot work.  Use -f to perform "
354                         "the test anyway (and\n-d to see what happens), "
355                         "or add one of -ssl2, -ssl3, -tls1, -reuse\n"
356                         "to avoid protocol mismatch.\n");
357                 exit(1);
358                 }
359
360         if (print_time)
361                 {
362                 if (!bio_pair)
363                         {
364                         fprintf(stderr, "Using BIO pair (-bio_pair)\n");
365                         bio_pair = 1;
366                         }
367                 if (number < 50 && !force)
368                         fprintf(stderr, "Warning: For accurate timings, use more connections (e.g. -num 1000)\n");
369                 }
370
371 /*      if (cipher == NULL) cipher=getenv("SSL_CIPHER"); */
372
373         SSL_library_init();
374         SSL_load_error_strings();
375
376 #if !defined(NO_SSL2) && !defined(NO_SSL3)
377         if (ssl2)
378                 meth=SSLv2_method();
379         else 
380         if (tls1)
381                 meth=TLSv1_method();
382         else
383         if (ssl3)
384                 meth=SSLv3_method();
385         else
386                 meth=SSLv23_method();
387 #else
388 #ifdef NO_SSL2
389         meth=SSLv3_method();
390 #else
391         meth=SSLv2_method();
392 #endif
393 #endif
394
395         c_ctx=SSL_CTX_new(meth);
396         s_ctx=SSL_CTX_new(meth);
397         if ((c_ctx == NULL) || (s_ctx == NULL))
398                 {
399                 ERR_print_errors(bio_err);
400                 goto end;
401                 }
402
403         if (cipher != NULL)
404                 {
405                 SSL_CTX_set_cipher_list(c_ctx,cipher);
406                 SSL_CTX_set_cipher_list(s_ctx,cipher);
407                 }
408
409 #ifndef NO_DH
410         if (!no_dhe)
411                 {
412                 if (dhe1024dsa)
413                         {
414                         /* use SSL_OP_SINGLE_DH_USE to avoid small subgroup attacks */
415                         SSL_CTX_set_options(s_ctx, SSL_OP_SINGLE_DH_USE);
416                         dh=get_dh1024dsa();
417                         }
418                 else if (dhe1024)
419                         dh=get_dh1024();
420                 else
421                         dh=get_dh512();
422                 SSL_CTX_set_tmp_dh(s_ctx,dh);
423                 DH_free(dh);
424                 }
425 #else
426         (void)no_dhe;
427 #endif
428
429 #ifndef NO_RSA
430         SSL_CTX_set_tmp_rsa_callback(s_ctx,tmp_rsa_cb);
431 #endif
432
433         if (!SSL_CTX_use_certificate_file(s_ctx,server_cert,SSL_FILETYPE_PEM))
434                 {
435                 ERR_print_errors(bio_err);
436                 }
437         else if (!SSL_CTX_use_PrivateKey_file(s_ctx,
438                 (server_key?server_key:server_cert), SSL_FILETYPE_PEM))
439                 {
440                 ERR_print_errors(bio_err);
441                 goto end;
442                 }
443
444         if (client_auth)
445                 {
446                 SSL_CTX_use_certificate_file(c_ctx,client_cert,
447                         SSL_FILETYPE_PEM);
448                 SSL_CTX_use_PrivateKey_file(c_ctx,
449                         (client_key?client_key:client_cert),
450                         SSL_FILETYPE_PEM);
451                 }
452
453         if (    (!SSL_CTX_load_verify_locations(s_ctx,CAfile,CApath)) ||
454                 (!SSL_CTX_set_default_verify_paths(s_ctx)) ||
455                 (!SSL_CTX_load_verify_locations(c_ctx,CAfile,CApath)) ||
456                 (!SSL_CTX_set_default_verify_paths(c_ctx)))
457                 {
458                 /* fprintf(stderr,"SSL_load_verify_locations\n"); */
459                 ERR_print_errors(bio_err);
460                 /* goto end; */
461                 }
462
463         if (client_auth)
464                 {
465                 BIO_printf(bio_err,"client authentication\n");
466                 SSL_CTX_set_verify(s_ctx,
467                         SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
468                         verify_callback);
469                 }
470         if (server_auth)
471                 {
472                 BIO_printf(bio_err,"server authentication\n");
473                 SSL_CTX_set_verify(c_ctx,SSL_VERIFY_PEER,
474                         verify_callback);
475                 }
476         
477         {
478                 int session_id_context = 0;
479                 SSL_CTX_set_session_id_context(s_ctx, (void *)&session_id_context, sizeof session_id_context);
480         }
481
482         c_ssl=SSL_new(c_ctx);
483         s_ssl=SSL_new(s_ctx);
484
485         for (i=0; i<number; i++)
486                 {
487                 if (!reuse) SSL_set_session(c_ssl,NULL);
488                 if (bio_pair)
489                         ret=doit_biopair(s_ssl,c_ssl,bytes,&s_time,&c_time);
490                 else
491                         ret=doit(s_ssl,c_ssl,bytes);
492                 }
493
494         if (!verbose)
495                 {
496                 print_details(c_ssl, "");
497                 }
498         if ((number > 1) || (bytes > 1L))
499                 BIO_printf(bio_stdout, "%d handshakes of %ld bytes done\n",number,bytes);
500         if (print_time)
501                 {
502                 BIO_printf(bio_stdout, "Approximate total server time: %6.2f s\n"
503                         "Approximate total client time: %6.2f s\n",
504                         (double)s_time/CLOCKS_PER_SEC,
505                         (double)c_time/CLOCKS_PER_SEC);
506                 }
507
508         SSL_free(s_ssl);
509         SSL_free(c_ssl);
510
511 end:
512         if (s_ctx != NULL) SSL_CTX_free(s_ctx);
513         if (c_ctx != NULL) SSL_CTX_free(c_ctx);
514
515         if (bio_stdout != NULL) BIO_free(bio_stdout);
516
517         ERR_free_strings();
518         ERR_remove_state(0);
519         EVP_cleanup();
520         CRYPTO_mem_leaks(bio_err);
521         if (bio_err != NULL) BIO_free(bio_err);
522         EXIT(ret);
523         }
524
525 int doit_biopair(SSL *s_ssl, SSL *c_ssl, long count,
526         clock_t *s_time, clock_t *c_time)
527         {
528         long cw_num = count, cr_num = count, sw_num = count, sr_num = count;
529         BIO *s_ssl_bio = NULL, *c_ssl_bio = NULL;
530         BIO *server = NULL, *server_io = NULL, *client = NULL, *client_io = NULL;
531         int ret = 1;
532         
533         size_t bufsiz = 256; /* small buffer for testing */
534
535         if (!BIO_new_bio_pair(&server, bufsiz, &server_io, bufsiz))
536                 goto err;
537         if (!BIO_new_bio_pair(&client, bufsiz, &client_io, bufsiz))
538                 goto err;
539         
540         s_ssl_bio = BIO_new(BIO_f_ssl());
541         if (!s_ssl_bio)
542                 goto err;
543
544         c_ssl_bio = BIO_new(BIO_f_ssl());
545         if (!c_ssl_bio)
546                 goto err;
547
548         SSL_set_connect_state(c_ssl);
549         SSL_set_bio(c_ssl, client, client);
550         (void)BIO_set_ssl(c_ssl_bio, c_ssl, BIO_NOCLOSE);
551
552         SSL_set_accept_state(s_ssl);
553         SSL_set_bio(s_ssl, server, server);
554         (void)BIO_set_ssl(s_ssl_bio, s_ssl, BIO_NOCLOSE);
555
556         do
557                 {
558                 /* c_ssl_bio:          SSL filter BIO
559                  *
560                  * client:             pseudo-I/O for SSL library
561                  *
562                  * client_io:          client's SSL communication; usually to be
563                  *                     relayed over some I/O facility, but in this
564                  *                     test program, we're the server, too:
565                  *
566                  * server_io:          server's SSL communication
567                  *
568                  * server:             pseudo-I/O for SSL library
569                  *
570                  * s_ssl_bio:          SSL filter BIO
571                  *
572                  * The client and the server each employ a "BIO pair":
573                  * client + client_io, server + server_io.
574                  * BIO pairs are symmetric.  A BIO pair behaves similar
575                  * to a non-blocking socketpair (but both endpoints must
576                  * be handled by the same thread).
577                  * [Here we could connect client and server to the ends
578                  * of a single BIO pair, but then this code would be less
579                  * suitable as an example for BIO pairs in general.]
580                  *
581                  * Useful functions for querying the state of BIO pair endpoints:
582                  *
583                  * BIO_ctrl_pending(bio)              number of bytes we can read now
584                  * BIO_ctrl_get_read_request(bio)     number of bytes needed to fulfil
585                  *                                      other side's read attempt
586                  * BIO_ctrl_get_write_guarantee(bio)   number of bytes we can write now
587                  *
588                  * ..._read_request is never more than ..._write_guarantee;
589                  * it depends on the application which one you should use.
590                  */
591
592                 /* We have non-blocking behaviour throughout this test program, but
593                  * can be sure that there is *some* progress in each iteration; so
594                  * we don't have to worry about ..._SHOULD_READ or ..._SHOULD_WRITE
595                  * -- we just try everything in each iteration
596                  */
597
598                         {
599                         /* CLIENT */
600                 
601                         MS_STATIC char cbuf[1024*8];
602                         int i, r;
603                         clock_t c_clock = clock();
604
605                         if (debug)
606                                 if (SSL_in_init(c_ssl))
607                                         printf("client waiting in SSL_connect - %s\n",
608                                                 SSL_state_string_long(c_ssl));
609
610                         if (cw_num > 0)
611                                 {
612                                 /* Write to server. */
613                                 
614                                 if (cw_num > (long)sizeof cbuf)
615                                         i = sizeof cbuf;
616                                 else
617                                         i = (int)cw_num;
618                                 r = BIO_write(c_ssl_bio, cbuf, i);
619                                 if (r < 0)
620                                         {
621                                         if (!BIO_should_retry(c_ssl_bio))
622                                                 {
623                                                 fprintf(stderr,"ERROR in CLIENT\n");
624                                                 goto err;
625                                                 }
626                                         /* BIO_should_retry(...) can just be ignored here.
627                                          * The library expects us to call BIO_write with
628                                          * the same arguments again, and that's what we will
629                                          * do in the next iteration. */
630                                         }
631                                 else if (r == 0)
632                                         {
633                                         fprintf(stderr,"SSL CLIENT STARTUP FAILED\n");
634                                         goto err;
635                                         }
636                                 else
637                                         {
638                                         if (debug)
639                                                 printf("client wrote %d\n", r);
640                                         cw_num -= r;                            
641                                         }
642                                 }
643
644                         if (cr_num > 0)
645                                 {
646                                 /* Read from server. */
647
648                                 r = BIO_read(c_ssl_bio, cbuf, sizeof(cbuf));
649                                 if (r < 0)
650                                         {
651                                         if (!BIO_should_retry(c_ssl_bio))
652                                                 {
653                                                 fprintf(stderr,"ERROR in CLIENT\n");
654                                                 goto err;
655                                                 }
656                                         /* Again, "BIO_should_retry" can be ignored. */
657                                         }
658                                 else if (r == 0)
659                                         {
660                                         fprintf(stderr,"SSL CLIENT STARTUP FAILED\n");
661                                         goto err;
662                                         }
663                                 else
664                                         {
665                                         if (debug)
666                                                 printf("client read %d\n", r);
667                                         cr_num -= r;
668                                         }
669                                 }
670
671                         /* c_time and s_time increments will typically be very small
672                          * (depending on machine speed and clock tick intervals),
673                          * but sampling over a large number of connections should
674                          * result in fairly accurate figures.  We cannot guarantee
675                          * a lot, however -- if each connection lasts for exactly
676                          * one clock tick, it will be counted only for the client
677                          * or only for the server or even not at all.
678                          */
679                         *c_time += (clock() - c_clock);
680                         }
681
682                         {
683                         /* SERVER */
684                 
685                         MS_STATIC char sbuf[1024*8];
686                         int i, r;
687                         clock_t s_clock = clock();
688
689                         if (debug)
690                                 if (SSL_in_init(s_ssl))
691                                         printf("server waiting in SSL_accept - %s\n",
692                                                 SSL_state_string_long(s_ssl));
693
694                         if (sw_num > 0)
695                                 {
696                                 /* Write to client. */
697                                 
698                                 if (sw_num > (long)sizeof sbuf)
699                                         i = sizeof sbuf;
700                                 else
701                                         i = (int)sw_num;
702                                 r = BIO_write(s_ssl_bio, sbuf, i);
703                                 if (r < 0)
704                                         {
705                                         if (!BIO_should_retry(s_ssl_bio))
706                                                 {
707                                                 fprintf(stderr,"ERROR in SERVER\n");
708                                                 goto err;
709                                                 }
710                                         /* Ignore "BIO_should_retry". */
711                                         }
712                                 else if (r == 0)
713                                         {
714                                         fprintf(stderr,"SSL SERVER STARTUP FAILED\n");
715                                         goto err;
716                                         }
717                                 else
718                                         {
719                                         if (debug)
720                                                 printf("server wrote %d\n", r);
721                                         sw_num -= r;                            
722                                         }
723                                 }
724
725                         if (sr_num > 0)
726                                 {
727                                 /* Read from client. */
728
729                                 r = BIO_read(s_ssl_bio, sbuf, sizeof(sbuf));
730                                 if (r < 0)
731                                         {
732                                         if (!BIO_should_retry(s_ssl_bio))
733                                                 {
734                                                 fprintf(stderr,"ERROR in SERVER\n");
735                                                 goto err;
736                                                 }
737                                         /* blah, blah */
738                                         }
739                                 else if (r == 0)
740                                         {
741                                         fprintf(stderr,"SSL SERVER STARTUP FAILED\n");
742                                         goto err;
743                                         }
744                                 else
745                                         {
746                                         if (debug)
747                                                 printf("server read %d\n", r);
748                                         sr_num -= r;
749                                         }
750                                 }
751
752                         *s_time += (clock() - s_clock);
753                         }
754                         
755                         {
756                         /* "I/O" BETWEEN CLIENT AND SERVER. */
757
758                         size_t r1, r2;
759                         BIO *io1 = server_io, *io2 = client_io;
760                         /* we use the non-copying interface for io1
761                          * and the standard BIO_write/BIO_read interface for io2
762                          */
763                         
764                         static int prev_progress = 1;
765                         int progress = 0;
766                         
767                         /* io1 to io2 */
768                         do
769                                 {
770                                 size_t num;
771                                 int r;
772
773                                 r1 = BIO_ctrl_pending(io1);
774                                 r2 = BIO_ctrl_get_write_guarantee(io2);
775
776                                 num = r1;
777                                 if (r2 < num)
778                                         num = r2;
779                                 if (num)
780                                         {
781                                         char *dataptr;
782
783                                         if (INT_MAX < num) /* yeah, right */
784                                                 num = INT_MAX;
785                                         
786                                         r = BIO_nread(io1, &dataptr, (int)num);
787                                         assert(r > 0);
788                                         assert(r <= (int)num);
789                                         /* possibly r < num (non-contiguous data) */
790                                         num = r;
791                                         r = BIO_write(io2, dataptr, (int)num);
792                                         if (r != (int)num) /* can't happen */
793                                                 {
794                                                 fprintf(stderr, "ERROR: BIO_write could not write "
795                                                         "BIO_ctrl_get_write_guarantee() bytes");
796                                                 goto err;
797                                                 }
798                                         progress = 1;
799
800                                         if (debug)
801                                                 printf((io1 == client_io) ?
802                                                         "C->S relaying: %d bytes\n" :
803                                                         "S->C relaying: %d bytes\n",
804                                                         (int)num);
805                                         }
806                                 }
807                         while (r1 && r2);
808
809                         /* io2 to io1 */
810                         {
811                                 size_t num;
812                                 int r;
813
814                                 r1 = BIO_ctrl_pending(io2);
815                                 r2 = BIO_ctrl_get_read_request(io1);
816                                 /* here we could use ..._get_write_guarantee instead of
817                                  * ..._get_read_request, but by using the latter
818                                  * we test restartability of the SSL implementation
819                                  * more thoroughly */
820                                 num = r1;
821                                 if (r2 < num)
822                                         num = r2;
823                                 if (num)
824                                         {
825                                         char *dataptr;
826                                         
827                                         if (INT_MAX < num)
828                                                 num = INT_MAX;
829
830                                         if (num > 1)
831                                                 --num; /* test restartability even more thoroughly */
832                                         
833                                         r = BIO_nwrite(io1, &dataptr, (int)num);
834                                         assert(r > 0);
835                                         assert(r <= (int)num);
836                                         num = r;
837                                         r = BIO_read(io2, dataptr, (int)num);
838                                         if (r != (int)num) /* can't happen */
839                                                 {
840                                                 fprintf(stderr, "ERROR: BIO_read could not read "
841                                                         "BIO_ctrl_pending() bytes");
842                                                 goto err;
843                                                 }
844                                         progress = 1;
845                                         
846                                         if (debug)
847                                                 printf((io2 == client_io) ?
848                                                         "C->S relaying: %d bytes\n" :
849                                                         "S->C relaying: %d bytes\n",
850                                                         (int)num);
851                                         }
852                         } /* no loop, BIO_ctrl_get_read_request now returns 0 anyway */
853
854                         if (!progress && !prev_progress)
855                                 if (cw_num > 0 || cr_num > 0 || sw_num > 0 || sr_num > 0)
856                                         {
857                                         fprintf(stderr, "ERROR: got stuck\n");
858                                         if (strcmp("SSLv2", SSL_get_version(c_ssl)) == 0)
859                                                 {
860                                                 fprintf(stderr, "This can happen for SSL2 because "
861                                                         "CLIENT-FINISHED and SERVER-VERIFY are written \n"
862                                                         "concurrently ...");
863                                                 if (strncmp("2SCF", SSL_state_string(c_ssl), 4) == 0
864                                                         && strncmp("2SSV", SSL_state_string(s_ssl), 4) == 0)
865                                                         {
866                                                         fprintf(stderr, " ok.\n");
867                                                         goto end;
868                                                         }
869                                                 }
870                                         fprintf(stderr, " ERROR.\n");
871                                         goto err;
872                                         }
873                         prev_progress = progress;
874                         }
875                 }
876         while (cw_num > 0 || cr_num > 0 || sw_num > 0 || sr_num > 0);
877
878         if (verbose)
879                 print_details(c_ssl, "DONE via BIO pair: ");
880 end:
881         ret = 0;
882
883  err:
884         ERR_print_errors(bio_err);
885         
886         if (server)
887                 BIO_free(server);
888         if (server_io)
889                 BIO_free(server_io);
890         if (client)
891                 BIO_free(client);
892         if (client_io)
893                 BIO_free(client_io);
894         if (s_ssl_bio)
895                 BIO_free(s_ssl_bio);
896         if (c_ssl_bio)
897                 BIO_free(c_ssl_bio);
898
899         return ret;
900         }
901
902
903 #define W_READ  1
904 #define W_WRITE 2
905 #define C_DONE  1
906 #define S_DONE  2
907
908 int doit(SSL *s_ssl, SSL *c_ssl, long count)
909         {
910         MS_STATIC char cbuf[1024*8],sbuf[1024*8];
911         long cw_num=count,cr_num=count;
912         long sw_num=count,sr_num=count;
913         int ret=1;
914         BIO *c_to_s=NULL;
915         BIO *s_to_c=NULL;
916         BIO *c_bio=NULL;
917         BIO *s_bio=NULL;
918         int c_r,c_w,s_r,s_w;
919         int c_want,s_want;
920         int i,j;
921         int done=0;
922         int c_write,s_write;
923         int do_server=0,do_client=0;
924
925         c_to_s=BIO_new(BIO_s_mem());
926         s_to_c=BIO_new(BIO_s_mem());
927         if ((s_to_c == NULL) || (c_to_s == NULL))
928                 {
929                 ERR_print_errors(bio_err);
930                 goto err;
931                 }
932
933         c_bio=BIO_new(BIO_f_ssl());
934         s_bio=BIO_new(BIO_f_ssl());
935         if ((c_bio == NULL) || (s_bio == NULL))
936                 {
937                 ERR_print_errors(bio_err);
938                 goto err;
939                 }
940
941         SSL_set_connect_state(c_ssl);
942         SSL_set_bio(c_ssl,s_to_c,c_to_s);
943         BIO_set_ssl(c_bio,c_ssl,BIO_NOCLOSE);
944
945         SSL_set_accept_state(s_ssl);
946         SSL_set_bio(s_ssl,c_to_s,s_to_c);
947         BIO_set_ssl(s_bio,s_ssl,BIO_NOCLOSE);
948
949         c_r=0; s_r=1;
950         c_w=1; s_w=0;
951         c_want=W_WRITE;
952         s_want=0;
953         c_write=1,s_write=0;
954
955         /* We can always do writes */
956         for (;;)
957                 {
958                 do_server=0;
959                 do_client=0;
960
961                 i=(int)BIO_pending(s_bio);
962                 if ((i && s_r) || s_w) do_server=1;
963
964                 i=(int)BIO_pending(c_bio);
965                 if ((i && c_r) || c_w) do_client=1;
966
967                 if (do_server && debug)
968                         {
969                         if (SSL_in_init(s_ssl))
970                                 printf("server waiting in SSL_accept - %s\n",
971                                         SSL_state_string_long(s_ssl));
972 /*                      else if (s_write)
973                                 printf("server:SSL_write()\n");
974                         else
975                                 printf("server:SSL_read()\n"); */
976                         }
977
978                 if (do_client && debug)
979                         {
980                         if (SSL_in_init(c_ssl))
981                                 printf("client waiting in SSL_connect - %s\n",
982                                         SSL_state_string_long(c_ssl));
983 /*                      else if (c_write)
984                                 printf("client:SSL_write()\n");
985                         else
986                                 printf("client:SSL_read()\n"); */
987                         }
988
989                 if (!do_client && !do_server)
990                         {
991                         fprintf(stdout,"ERROR IN STARTUP\n");
992                         ERR_print_errors(bio_err);
993                         break;
994                         }
995                 if (do_client && !(done & C_DONE))
996                         {
997                         if (c_write)
998                                 {
999                                 j=(cw_num > (long)sizeof(cbuf))
1000                                         ?sizeof(cbuf):(int)cw_num;
1001                                 i=BIO_write(c_bio,cbuf,j);
1002                                 if (i < 0)
1003                                         {
1004                                         c_r=0;
1005                                         c_w=0;
1006                                         if (BIO_should_retry(c_bio))
1007                                                 {
1008                                                 if (BIO_should_read(c_bio))
1009                                                         c_r=1;
1010                                                 if (BIO_should_write(c_bio))
1011                                                         c_w=1;
1012                                                 }
1013                                         else
1014                                                 {
1015                                                 fprintf(stderr,"ERROR in CLIENT\n");
1016                                                 ERR_print_errors(bio_err);
1017                                                 goto err;
1018                                                 }
1019                                         }
1020                                 else if (i == 0)
1021                                         {
1022                                         fprintf(stderr,"SSL CLIENT STARTUP FAILED\n");
1023                                         goto err;
1024                                         }
1025                                 else
1026                                         {
1027                                         if (debug)
1028                                                 printf("client wrote %d\n",i);
1029                                         /* ok */
1030                                         s_r=1;
1031                                         c_write=0;
1032                                         cw_num-=i;
1033                                         }
1034                                 }
1035                         else
1036                                 {
1037                                 i=BIO_read(c_bio,cbuf,sizeof(cbuf));
1038                                 if (i < 0)
1039                                         {
1040                                         c_r=0;
1041                                         c_w=0;
1042                                         if (BIO_should_retry(c_bio))
1043                                                 {
1044                                                 if (BIO_should_read(c_bio))
1045                                                         c_r=1;
1046                                                 if (BIO_should_write(c_bio))
1047                                                         c_w=1;
1048                                                 }
1049                                         else
1050                                                 {
1051                                                 fprintf(stderr,"ERROR in CLIENT\n");
1052                                                 ERR_print_errors(bio_err);
1053                                                 goto err;
1054                                                 }
1055                                         }
1056                                 else if (i == 0)
1057                                         {
1058                                         fprintf(stderr,"SSL CLIENT STARTUP FAILED\n");
1059                                         goto err;
1060                                         }
1061                                 else
1062                                         {
1063                                         if (debug)
1064                                                 printf("client read %d\n",i);
1065                                         cr_num-=i;
1066                                         if (sw_num > 0)
1067                                                 {
1068                                                 s_write=1;
1069                                                 s_w=1;
1070                                                 }
1071                                         if (cr_num <= 0)
1072                                                 {
1073                                                 s_write=1;
1074                                                 s_w=1;
1075                                                 done=S_DONE|C_DONE;
1076                                                 }
1077                                         }
1078                                 }
1079                         }
1080
1081                 if (do_server && !(done & S_DONE))
1082                         {
1083                         if (!s_write)
1084                                 {
1085                                 i=BIO_read(s_bio,sbuf,sizeof(cbuf));
1086                                 if (i < 0)
1087                                         {
1088                                         s_r=0;
1089                                         s_w=0;
1090                                         if (BIO_should_retry(s_bio))
1091                                                 {
1092                                                 if (BIO_should_read(s_bio))
1093                                                         s_r=1;
1094                                                 if (BIO_should_write(s_bio))
1095                                                         s_w=1;
1096                                                 }
1097                                         else
1098                                                 {
1099                                                 fprintf(stderr,"ERROR in SERVER\n");
1100                                                 ERR_print_errors(bio_err);
1101                                                 goto err;
1102                                                 }
1103                                         }
1104                                 else if (i == 0)
1105                                         {
1106                                         ERR_print_errors(bio_err);
1107                                         fprintf(stderr,"SSL SERVER STARTUP FAILED in SSL_read\n");
1108                                         goto err;
1109                                         }
1110                                 else
1111                                         {
1112                                         if (debug)
1113                                                 printf("server read %d\n",i);
1114                                         sr_num-=i;
1115                                         if (cw_num > 0)
1116                                                 {
1117                                                 c_write=1;
1118                                                 c_w=1;
1119                                                 }
1120                                         if (sr_num <= 0)
1121                                                 {
1122                                                 s_write=1;
1123                                                 s_w=1;
1124                                                 c_write=0;
1125                                                 }
1126                                         }
1127                                 }
1128                         else
1129                                 {
1130                                 j=(sw_num > (long)sizeof(sbuf))?
1131                                         sizeof(sbuf):(int)sw_num;
1132                                 i=BIO_write(s_bio,sbuf,j);
1133                                 if (i < 0)
1134                                         {
1135                                         s_r=0;
1136                                         s_w=0;
1137                                         if (BIO_should_retry(s_bio))
1138                                                 {
1139                                                 if (BIO_should_read(s_bio))
1140                                                         s_r=1;
1141                                                 if (BIO_should_write(s_bio))
1142                                                         s_w=1;
1143                                                 }
1144                                         else
1145                                                 {
1146                                                 fprintf(stderr,"ERROR in SERVER\n");
1147                                                 ERR_print_errors(bio_err);
1148                                                 goto err;
1149                                                 }
1150                                         }
1151                                 else if (i == 0)
1152                                         {
1153                                         ERR_print_errors(bio_err);
1154                                         fprintf(stderr,"SSL SERVER STARTUP FAILED in SSL_write\n");
1155                                         goto err;
1156                                         }
1157                                 else
1158                                         {
1159                                         if (debug)
1160                                                 printf("server wrote %d\n",i);
1161                                         sw_num-=i;
1162                                         s_write=0;
1163                                         c_r=1;
1164                                         if (sw_num <= 0)
1165                                                 done|=S_DONE;
1166                                         }
1167                                 }
1168                         }
1169
1170                 if ((done & S_DONE) && (done & C_DONE)) break;
1171                 }
1172
1173         if (verbose)
1174                 print_details(c_ssl, "DONE: ");
1175         ret=0;
1176 err:
1177         /* We have to set the BIO's to NULL otherwise they will be
1178          * Free()ed twice.  Once when th s_ssl is SSL_free()ed and
1179          * again when c_ssl is SSL_free()ed.
1180          * This is a hack required because s_ssl and c_ssl are sharing the same
1181          * BIO structure and SSL_set_bio() and SSL_free() automatically
1182          * BIO_free non NULL entries.
1183          * You should not normally do this or be required to do this */
1184         if (s_ssl != NULL)
1185                 {
1186                 s_ssl->rbio=NULL;
1187                 s_ssl->wbio=NULL;
1188                 }
1189         if (c_ssl != NULL)
1190                 {
1191                 c_ssl->rbio=NULL;
1192                 c_ssl->wbio=NULL;
1193                 }
1194
1195         if (c_to_s != NULL) BIO_free(c_to_s);
1196         if (s_to_c != NULL) BIO_free(s_to_c);
1197         if (c_bio != NULL) BIO_free_all(c_bio);
1198         if (s_bio != NULL) BIO_free_all(s_bio);
1199         return(ret);
1200         }
1201
1202 static int MS_CALLBACK verify_callback(int ok, X509_STORE_CTX *ctx)
1203         {
1204         char *s,buf[256];
1205
1206         s=X509_NAME_oneline(X509_get_subject_name(ctx->current_cert),buf,256);
1207         if (s != NULL)
1208                 {
1209                 if (ok)
1210                         fprintf(stderr,"depth=%d %s\n",ctx->error_depth,buf);
1211                 else
1212                         fprintf(stderr,"depth=%d error=%d %s\n",
1213                                 ctx->error_depth,ctx->error,buf);
1214                 }
1215
1216         if (ok == 0)
1217                 {
1218                 switch (ctx->error)
1219                         {
1220                 case X509_V_ERR_CERT_NOT_YET_VALID:
1221                 case X509_V_ERR_CERT_HAS_EXPIRED:
1222                 case X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT:
1223                         ok=1;
1224                         }
1225                 }
1226
1227         return(ok);
1228         }
1229
1230 #ifndef NO_RSA
1231 static RSA MS_CALLBACK *tmp_rsa_cb(SSL *s, int is_export, int keylength)
1232         {
1233         static RSA *rsa_tmp=NULL;
1234
1235         if (rsa_tmp == NULL)
1236                 {
1237                 BIO_printf(bio_err,"Generating temp (%d bit) RSA key...",keylength);
1238                 (void)BIO_flush(bio_err);
1239                 rsa_tmp=RSA_generate_key(keylength,RSA_F4,NULL,NULL);
1240                 BIO_printf(bio_err,"\n");
1241                 (void)BIO_flush(bio_err);
1242                 }
1243         return(rsa_tmp);
1244         }
1245 #endif
1246
1247 #ifndef NO_DH
1248 /* These DH parameters have been generated as follows:
1249  *    $ openssl dhparam -C -noout 512
1250  *    $ openssl dhparam -C -noout 1024
1251  *    $ openssl dhparam -C -noout -dsaparam 1024
1252  * (The third function has been renamed to avoid name conflicts.)
1253  */
1254 DH *get_dh512()
1255         {
1256         static unsigned char dh512_p[]={
1257                 0xCB,0xC8,0xE1,0x86,0xD0,0x1F,0x94,0x17,0xA6,0x99,0xF0,0xC6,
1258                 0x1F,0x0D,0xAC,0xB6,0x25,0x3E,0x06,0x39,0xCA,0x72,0x04,0xB0,
1259                 0x6E,0xDA,0xC0,0x61,0xE6,0x7A,0x77,0x25,0xE8,0x3B,0xB9,0x5F,
1260                 0x9A,0xB6,0xB5,0xFE,0x99,0x0B,0xA1,0x93,0x4E,0x35,0x33,0xB8,
1261                 0xE1,0xF1,0x13,0x4F,0x59,0x1A,0xD2,0x57,0xC0,0x26,0x21,0x33,
1262                 0x02,0xC5,0xAE,0x23,
1263                 };
1264         static unsigned char dh512_g[]={
1265                 0x02,
1266                 };
1267         DH *dh;
1268
1269         if ((dh=DH_new()) == NULL) return(NULL);
1270         dh->p=BN_bin2bn(dh512_p,sizeof(dh512_p),NULL);
1271         dh->g=BN_bin2bn(dh512_g,sizeof(dh512_g),NULL);
1272         if ((dh->p == NULL) || (dh->g == NULL))
1273                 { DH_free(dh); return(NULL); }
1274         return(dh);
1275         }
1276
1277 DH *get_dh1024()
1278         {
1279         static unsigned char dh1024_p[]={
1280                 0xF8,0x81,0x89,0x7D,0x14,0x24,0xC5,0xD1,0xE6,0xF7,0xBF,0x3A,
1281                 0xE4,0x90,0xF4,0xFC,0x73,0xFB,0x34,0xB5,0xFA,0x4C,0x56,0xA2,
1282                 0xEA,0xA7,0xE9,0xC0,0xC0,0xCE,0x89,0xE1,0xFA,0x63,0x3F,0xB0,
1283                 0x6B,0x32,0x66,0xF1,0xD1,0x7B,0xB0,0x00,0x8F,0xCA,0x87,0xC2,
1284                 0xAE,0x98,0x89,0x26,0x17,0xC2,0x05,0xD2,0xEC,0x08,0xD0,0x8C,
1285                 0xFF,0x17,0x52,0x8C,0xC5,0x07,0x93,0x03,0xB1,0xF6,0x2F,0xB8,
1286                 0x1C,0x52,0x47,0x27,0x1B,0xDB,0xD1,0x8D,0x9D,0x69,0x1D,0x52,
1287                 0x4B,0x32,0x81,0xAA,0x7F,0x00,0xC8,0xDC,0xE6,0xD9,0xCC,0xC1,
1288                 0x11,0x2D,0x37,0x34,0x6C,0xEA,0x02,0x97,0x4B,0x0E,0xBB,0xB1,
1289                 0x71,0x33,0x09,0x15,0xFD,0xDD,0x23,0x87,0x07,0x5E,0x89,0xAB,
1290                 0x6B,0x7C,0x5F,0xEC,0xA6,0x24,0xDC,0x53,
1291                 };
1292         static unsigned char dh1024_g[]={
1293                 0x02,
1294                 };
1295         DH *dh;
1296
1297         if ((dh=DH_new()) == NULL) return(NULL);
1298         dh->p=BN_bin2bn(dh1024_p,sizeof(dh1024_p),NULL);
1299         dh->g=BN_bin2bn(dh1024_g,sizeof(dh1024_g),NULL);
1300         if ((dh->p == NULL) || (dh->g == NULL))
1301                 { DH_free(dh); return(NULL); }
1302         return(dh);
1303         }
1304
1305 DH *get_dh1024dsa()
1306         {
1307         static unsigned char dh1024_p[]={
1308                 0xC8,0x00,0xF7,0x08,0x07,0x89,0x4D,0x90,0x53,0xF3,0xD5,0x00,
1309                 0x21,0x1B,0xF7,0x31,0xA6,0xA2,0xDA,0x23,0x9A,0xC7,0x87,0x19,
1310                 0x3B,0x47,0xB6,0x8C,0x04,0x6F,0xFF,0xC6,0x9B,0xB8,0x65,0xD2,
1311                 0xC2,0x5F,0x31,0x83,0x4A,0xA7,0x5F,0x2F,0x88,0x38,0xB6,0x55,
1312                 0xCF,0xD9,0x87,0x6D,0x6F,0x9F,0xDA,0xAC,0xA6,0x48,0xAF,0xFC,
1313                 0x33,0x84,0x37,0x5B,0x82,0x4A,0x31,0x5D,0xE7,0xBD,0x52,0x97,
1314                 0xA1,0x77,0xBF,0x10,0x9E,0x37,0xEA,0x64,0xFA,0xCA,0x28,0x8D,
1315                 0x9D,0x3B,0xD2,0x6E,0x09,0x5C,0x68,0xC7,0x45,0x90,0xFD,0xBB,
1316                 0x70,0xC9,0x3A,0xBB,0xDF,0xD4,0x21,0x0F,0xC4,0x6A,0x3C,0xF6,
1317                 0x61,0xCF,0x3F,0xD6,0x13,0xF1,0x5F,0xBC,0xCF,0xBC,0x26,0x9E,
1318                 0xBC,0x0B,0xBD,0xAB,0x5D,0xC9,0x54,0x39,
1319                 };
1320         static unsigned char dh1024_g[]={
1321                 0x3B,0x40,0x86,0xE7,0xF3,0x6C,0xDE,0x67,0x1C,0xCC,0x80,0x05,
1322                 0x5A,0xDF,0xFE,0xBD,0x20,0x27,0x74,0x6C,0x24,0xC9,0x03,0xF3,
1323                 0xE1,0x8D,0xC3,0x7D,0x98,0x27,0x40,0x08,0xB8,0x8C,0x6A,0xE9,
1324                 0xBB,0x1A,0x3A,0xD6,0x86,0x83,0x5E,0x72,0x41,0xCE,0x85,0x3C,
1325                 0xD2,0xB3,0xFC,0x13,0xCE,0x37,0x81,0x9E,0x4C,0x1C,0x7B,0x65,
1326                 0xD3,0xE6,0xA6,0x00,0xF5,0x5A,0x95,0x43,0x5E,0x81,0xCF,0x60,
1327                 0xA2,0x23,0xFC,0x36,0xA7,0x5D,0x7A,0x4C,0x06,0x91,0x6E,0xF6,
1328                 0x57,0xEE,0x36,0xCB,0x06,0xEA,0xF5,0x3D,0x95,0x49,0xCB,0xA7,
1329                 0xDD,0x81,0xDF,0x80,0x09,0x4A,0x97,0x4D,0xA8,0x22,0x72,0xA1,
1330                 0x7F,0xC4,0x70,0x56,0x70,0xE8,0x20,0x10,0x18,0x8F,0x2E,0x60,
1331                 0x07,0xE7,0x68,0x1A,0x82,0x5D,0x32,0xA2,
1332                 };
1333         DH *dh;
1334
1335         if ((dh=DH_new()) == NULL) return(NULL);
1336         dh->p=BN_bin2bn(dh1024_p,sizeof(dh1024_p),NULL);
1337         dh->g=BN_bin2bn(dh1024_g,sizeof(dh1024_g),NULL);
1338         if ((dh->p == NULL) || (dh->g == NULL))
1339                 { DH_free(dh); return(NULL); }
1340         dh->length = 160;
1341         return(dh);
1342         }
1343 #endif