| OLD | NEW |
| 1 /* ssl/ssl3.h */ | 1 /* ssl/ssl3.h */ |
| 2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
| 3 * All rights reserved. | 3 * All rights reserved. |
| 4 * | 4 * |
| 5 * This package is an SSL implementation written | 5 * This package is an SSL implementation written |
| 6 * by Eric Young (eay@cryptsoft.com). | 6 * by Eric Young (eay@cryptsoft.com). |
| 7 * The implementation was written so as to conform with Netscapes SSL. | 7 * The implementation was written so as to conform with Netscapes SSL. |
| 8 * | 8 * |
| 9 * This library is free for commercial and non-commercial use as long as | 9 * This library is free for commercial and non-commercial use as long as |
| 10 * the following conditions are aheared to. The following conditions | 10 * the following conditions are aheared to. The following conditions |
| (...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 #endif | 501 #endif |
| 502 | 502 |
| 503 /* used when SSL_ST_FLUSH_DATA is entered */ | 503 /* used when SSL_ST_FLUSH_DATA is entered */ |
| 504 int next_state; | 504 int next_state; |
| 505 | 505 |
| 506 int reuse_message; | 506 int reuse_message; |
| 507 | 507 |
| 508 /* used for certificate requests */ | 508 /* used for certificate requests */ |
| 509 int cert_req; | 509 int cert_req; |
| 510 int ctype_num; | 510 int ctype_num; |
| 511 » » char ctype[SSL3_CT_NUMBER]; | 511 » » unsigned char ctype[SSL3_CT_NUMBER]; |
| 512 STACK_OF(X509_NAME) *ca_names; | 512 STACK_OF(X509_NAME) *ca_names; |
| 513 | 513 |
| 514 int use_rsa_tmp; | 514 int use_rsa_tmp; |
| 515 | 515 |
| 516 int key_block_length; | 516 int key_block_length; |
| 517 unsigned char *key_block; | 517 unsigned char *key_block; |
| 518 | 518 |
| 519 const EVP_CIPHER *new_sym_enc; | 519 const EVP_CIPHER *new_sym_enc; |
| 520 const EVP_AEAD *new_aead; | 520 const EVP_AEAD *new_aead; |
| 521 const EVP_MD *new_hash; | 521 const EVP_MD *new_hash; |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 694 #define SSL3_CHANGE_CIPHER_CLIENT_WRITE (SSL3_CC_CLIENT|SSL3_CC_WRITE) | 694 #define SSL3_CHANGE_CIPHER_CLIENT_WRITE (SSL3_CC_CLIENT|SSL3_CC_WRITE) |
| 695 #define SSL3_CHANGE_CIPHER_SERVER_READ (SSL3_CC_SERVER|SSL3_CC_READ) | 695 #define SSL3_CHANGE_CIPHER_SERVER_READ (SSL3_CC_SERVER|SSL3_CC_READ) |
| 696 #define SSL3_CHANGE_CIPHER_CLIENT_READ (SSL3_CC_CLIENT|SSL3_CC_READ) | 696 #define SSL3_CHANGE_CIPHER_CLIENT_READ (SSL3_CC_CLIENT|SSL3_CC_READ) |
| 697 #define SSL3_CHANGE_CIPHER_SERVER_WRITE (SSL3_CC_SERVER|SSL3_CC_WRITE) | 697 #define SSL3_CHANGE_CIPHER_SERVER_WRITE (SSL3_CC_SERVER|SSL3_CC_WRITE) |
| 698 | 698 |
| 699 #ifdef __cplusplus | 699 #ifdef __cplusplus |
| 700 } | 700 } |
| 701 #endif | 701 #endif |
| 702 #endif | 702 #endif |
| 703 | 703 |
| OLD | NEW |