Update contrib.
2 Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
4 Redistribution and use in source and binary forms, with or without
5 modification, are permitted provided that the following conditions are met:
7 * Redistributions of source code must retain the above copyright notice, this
8 list of conditions and the following disclaimer.
9 * Redistributions in binary form must reproduce the above copyright notice,
10 this list of conditions and the following disclaimer in the documentation
11 and/or other materials provided with the distribution.
12 * Neither the name of Nokia Corporation nor the names of its contributors
13 may be used to endorse or promote products derived from this software
14 without specific prior written permission.
16 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
20 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 #ifndef _LIBSSL_WSD_H_
32 #define _LIBSSL_WSD_H_
35 #include <openssl/bio.h>
36 #include <openssl/ssl.h>
37 #include "libssl_wsd_defs.h"
42 #define SSL_MD_NUM_IDX 2
43 #define SSL_ENC_NUM_IDX 9
45 #define SSL_STR_FUNCTS_NUM 172
46 #define SSL_STR_REASONS_NUM 238
48 #define SSL3_MAX_NUM_CIPHERS 87 /* Must be updated once new ciphers are added. */
49 #define SSL2_MAX_NUM_CIPHERS 10 /* Must be updated once new ciphers are added. */
51 #define SSL3_NUM_CIPHERS (sizeof(temp_ssl3_ciphers)/sizeof(SSL_CIPHER))
52 #define SSL2_NUM_CIPHERS (sizeof(temp_ssl2_ciphers)/sizeof(SSL_CIPHER))
54 /* This is for the SSLv3/TLSv1.0 differences in crypto/hash stuff
55 * It is a bit of a mess of functions, but hell, think of it as
56 * an opaque structure :-) */
57 typedef struct ssl3_enc_method
59 int (*enc)(SSL *, int);
60 int (*mac)(SSL *, unsigned char *, int);
61 int (*setup_key_block)(SSL *);
62 int (*generate_master_secret)(SSL *, unsigned char *, unsigned char *, int);
63 int (*change_cipher_state)(SSL *, int);
64 int (*final_finish_mac)(SSL *, EVP_MD_CTX *, EVP_MD_CTX *, const char *, int, unsigned char *);
65 int finish_mac_length;
66 int (*cert_verify_mac)(SSL *, EVP_MD_CTX *, unsigned char *);
67 const char *client_finished_label;
68 int client_finished_label_len;
69 const char *server_finished_label;
70 int server_finished_label_len;
71 int (*alert_value)(int);
77 VARIABLE_DECL(methods_sslp,s,bio_ssl,BIO_METHOD) //static
80 VARIABLE_DECL(DTLSv1_method_data,s,d1_meth,SSL_METHOD) //static
83 VARIABLE_DECL(DTLSv1_client_method_data,s,d1_clnt,SSL_METHOD) //static
86 VARIABLE_DECL(dtlsv1_base_method_data,s,d1_lib,SSL_METHOD) //static
89 VARIABLE_DECL(DTLSv1_server_method_data,s,d1_srvr,SSL_METHOD) //static
92 VARIABLE_DECL(SSLv23_client_method_data,s,s23_clnt,SSL_METHOD) //static
95 VARIABLE_DECL(sslv23_base_method_data,s,s23_lib,SSL_METHOD) //static
98 VARIABLE_DECL(SSLv23_method_data,s,s23_meth,SSL_METHOD) //static
101 VARIABLE_DECL(SSLv23_server_method_data,s,s23_srvr,SSL_METHOD) //static
104 VARIABLE_DECL(SSLv2_client_method_data,s,s2_clnt,SSL_METHOD) //static
107 VARIABLE_DECL(sslv2_base_method_data,s,s2_lib,SSL_METHOD) //static
110 VARIABLE_DECL(SSLv2_method_data,s,s2_meth,SSL_METHOD) //static
113 VARIABLE_DECL(SSLv2_server_method_data,s,s2_srvr,SSL_METHOD) //static
116 VARIABLE_DECL(SSLv3_client_method_data,s,s3_clnt,SSL_METHOD) //static
119 VARIABLE_DECL(sslv3_base_method_data,s,s3_lib,SSL_METHOD) //static
122 VARIABLE_DECL(SSLv3_method_data,s,s3_meth,SSL_METHOD) //static
125 VARIABLE_DECL(SSLv3_server_method_data,s,s3_srvr,SSL_METHOD) //static
128 VARIABLE_DECL(TLSv1_client_method_data,s,t1_clnt,SSL_METHOD) //static
131 VARIABLE_DECL(tlsv1_base_method_data,s,t1_lib,SSL_METHOD) //static
134 VARIABLE_DECL(TLSv1_server_method_data,s,t1_srvr,SSL_METHOD) //static
137 VARIABLE_DECL(TLSv1_method_data,s,t1_meth,SSL_METHOD) //static
140 VARIABLE_DECL(ssl_x509_store_ctx_idx,s,ssl_cert,volatile int) //static
143 VARIABLE_DECL(ssl_comp_methods,s,ssl_ciph,STACK_OF(SSL_COMP) *) //static
146 VARIABLE_DECL_ARRAY(ssl_cipher_methods,s,ssl_ciph,const EVP_CIPHER *,SSL_ENC_NUM_IDX) //static
149 VARIABLE_DECL_ARRAY(ssl_digest_methods,s,ssl_ciph,const EVP_MD *,SSL_MD_NUM_IDX) //static
153 VARIABLE_DECL_ARRAY(SSL_str_functs,s,ssl_err,ERR_STRING_DATA,SSL_STR_FUNCTS_NUM) //static
156 VARIABLE_DECL_ARRAY(SSL_str_reasons,s,ssl_err,ERR_STRING_DATA,SSL_STR_REASONS_NUM) //static
159 VARIABLE_DECL_ARRAY(ssl3_ciphers,g,s3_lib,SSL_CIPHER,SSL3_MAX_NUM_CIPHERS) //global
162 VARIABLE_DECL_ARRAY(ssl2_ciphers,g,s2_lib,SSL_CIPHER,SSL2_MAX_NUM_CIPHERS) //global
165 VARIABLE_DECL(ssl3_undef_enc_method,g,ssl_lib,SSL3_ENC_METHOD) //static
168 VARIABLE_DECL(DTLSv1_enc_data,g,d1_lib,SSL3_ENC_METHOD) //static
171 VARIABLE_DECL(SSLv3_enc_data,g,s3_lib,SSL3_ENC_METHOD) //static
174 VARIABLE_DECL(TLSv1_enc_data,g,t1_lib,SSL3_ENC_METHOD) //static
186 void InitSSLWsdVar(struct _libssl_wsd *p);
188 //void Init_methods_sslp(/*_libssl_wsd *ptr*/);
190 _libssl_wsd* Libssl_ImpurePtr();
196 #endif /* EMULATOR */
197 #endif /* _LIBSSL_WSD_H_ */