|
Lines 27-32
Link Here
|
| 27 |
* Version 2.0.5 |
27 |
* Version 2.0.5 |
| 28 |
* Compatibility with OpenSSL 0.9.4 |
28 |
* Compatibility with OpenSSL 0.9.4 |
| 29 |
* |
29 |
* |
|
|
30 |
* Version 2.0.6 |
| 31 |
* Compatibility with OpenSSL 0.9.7 |
| 32 |
* |
| 30 |
* Copyright 1997-9 Rick R. Kaseguma |
33 |
* Copyright 1997-9 Rick R. Kaseguma |
| 31 |
* All rights reserved |
34 |
* All rights reserved |
| 32 |
* |
35 |
* |
|
Lines 464-470
Link Here
|
| 464 |
|
467 |
|
| 465 |
if (bugs) SSL_CTX_set_options(ctx,SSL_OP_ALL); |
468 |
if (bugs) SSL_CTX_set_options(ctx,SSL_OP_ALL); |
| 466 |
if (hack) SSL_CTX_set_options(ctx,SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG); |
469 |
if (hack) SSL_CTX_set_options(ctx,SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG); |
| 467 |
if (hack) SSL_CTX_set_options(ctx,SSL_OP_NON_EXPORT_FIRST); |
470 |
if (hack) SSL_CTX_set_options(ctx,SSL_OP_CIPHER_SERVER_PREFERENCE); |
| 468 |
|
471 |
|
| 469 |
if (state) SSL_CTX_set_info_callback(ctx,apps_ssl_info_callback); |
472 |
if (state) SSL_CTX_set_info_callback(ctx,apps_ssl_info_callback); |
| 470 |
|
473 |
|