sl@0
|
1 |
/*
|
sl@0
|
2 |
Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
|
sl@0
|
3 |
|
sl@0
|
4 |
Redistribution and use in source and binary forms, with or without
|
sl@0
|
5 |
modification, are permitted provided that the following conditions are met:
|
sl@0
|
6 |
|
sl@0
|
7 |
* Redistributions of source code must retain the above copyright notice, this
|
sl@0
|
8 |
list of conditions and the following disclaimer.
|
sl@0
|
9 |
* Redistributions in binary form must reproduce the above copyright notice,
|
sl@0
|
10 |
this list of conditions and the following disclaimer in the documentation
|
sl@0
|
11 |
and/or other materials provided with the distribution.
|
sl@0
|
12 |
* Neither the name of Nokia Corporation nor the names of its contributors
|
sl@0
|
13 |
may be used to endorse or promote products derived from this software
|
sl@0
|
14 |
without specific prior written permission.
|
sl@0
|
15 |
|
sl@0
|
16 |
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
sl@0
|
17 |
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
sl@0
|
18 |
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
sl@0
|
19 |
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
sl@0
|
20 |
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
sl@0
|
21 |
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
sl@0
|
22 |
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
sl@0
|
23 |
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
sl@0
|
24 |
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
sl@0
|
25 |
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
sl@0
|
26 |
|
sl@0
|
27 |
Description:
|
sl@0
|
28 |
*/
|
sl@0
|
29 |
|
sl@0
|
30 |
|
sl@0
|
31 |
#ifndef _LIBSSL_WSD_H_
|
sl@0
|
32 |
#define _LIBSSL_WSD_H_
|
sl@0
|
33 |
|
sl@0
|
34 |
|
sl@0
|
35 |
#include <openssl/bio.h>
|
sl@0
|
36 |
#include <openssl/ssl.h>
|
sl@0
|
37 |
#include "libssl_wsd_defs.h"
|
sl@0
|
38 |
|
sl@0
|
39 |
#ifdef EMULATOR
|
sl@0
|
40 |
|
sl@0
|
41 |
|
sl@0
|
42 |
#define SSL_MD_NUM_IDX 2
|
sl@0
|
43 |
#define SSL_ENC_NUM_IDX 9
|
sl@0
|
44 |
|
sl@0
|
45 |
#define SSL_STR_FUNCTS_NUM 172
|
sl@0
|
46 |
#define SSL_STR_REASONS_NUM 238
|
sl@0
|
47 |
|
sl@0
|
48 |
#define SSL3_MAX_NUM_CIPHERS 87 /* Must be updated once new ciphers are added. */
|
sl@0
|
49 |
#define SSL2_MAX_NUM_CIPHERS 10 /* Must be updated once new ciphers are added. */
|
sl@0
|
50 |
|
sl@0
|
51 |
#define SSL3_NUM_CIPHERS (sizeof(temp_ssl3_ciphers)/sizeof(SSL_CIPHER))
|
sl@0
|
52 |
#define SSL2_NUM_CIPHERS (sizeof(temp_ssl2_ciphers)/sizeof(SSL_CIPHER))
|
sl@0
|
53 |
|
sl@0
|
54 |
/* This is for the SSLv3/TLSv1.0 differences in crypto/hash stuff
|
sl@0
|
55 |
* It is a bit of a mess of functions, but hell, think of it as
|
sl@0
|
56 |
* an opaque structure :-) */
|
sl@0
|
57 |
typedef struct ssl3_enc_method
|
sl@0
|
58 |
{
|
sl@0
|
59 |
int (*enc)(SSL *, int);
|
sl@0
|
60 |
int (*mac)(SSL *, unsigned char *, int);
|
sl@0
|
61 |
int (*setup_key_block)(SSL *);
|
sl@0
|
62 |
int (*generate_master_secret)(SSL *, unsigned char *, unsigned char *, int);
|
sl@0
|
63 |
int (*change_cipher_state)(SSL *, int);
|
sl@0
|
64 |
int (*final_finish_mac)(SSL *, EVP_MD_CTX *, EVP_MD_CTX *, const char *, int, unsigned char *);
|
sl@0
|
65 |
int finish_mac_length;
|
sl@0
|
66 |
int (*cert_verify_mac)(SSL *, EVP_MD_CTX *, unsigned char *);
|
sl@0
|
67 |
const char *client_finished_label;
|
sl@0
|
68 |
int client_finished_label_len;
|
sl@0
|
69 |
const char *server_finished_label;
|
sl@0
|
70 |
int server_finished_label_len;
|
sl@0
|
71 |
int (*alert_value)(int);
|
sl@0
|
72 |
} SSL3_ENC_METHOD;
|
sl@0
|
73 |
|
sl@0
|
74 |
typedef struct{
|
sl@0
|
75 |
|
sl@0
|
76 |
/* bio_ssl.c */
|
sl@0
|
77 |
VARIABLE_DECL(methods_sslp,s,bio_ssl,BIO_METHOD) //static
|
sl@0
|
78 |
|
sl@0
|
79 |
/* d1_meth.c */
|
sl@0
|
80 |
VARIABLE_DECL(DTLSv1_method_data,s,d1_meth,SSL_METHOD) //static
|
sl@0
|
81 |
|
sl@0
|
82 |
/* d1_clnt.c */
|
sl@0
|
83 |
VARIABLE_DECL(DTLSv1_client_method_data,s,d1_clnt,SSL_METHOD) //static
|
sl@0
|
84 |
|
sl@0
|
85 |
/* d1_lib.c */
|
sl@0
|
86 |
VARIABLE_DECL(dtlsv1_base_method_data,s,d1_lib,SSL_METHOD) //static
|
sl@0
|
87 |
|
sl@0
|
88 |
/* d1_srvr.c */
|
sl@0
|
89 |
VARIABLE_DECL(DTLSv1_server_method_data,s,d1_srvr,SSL_METHOD) //static
|
sl@0
|
90 |
|
sl@0
|
91 |
/* s23_clnt.c */
|
sl@0
|
92 |
VARIABLE_DECL(SSLv23_client_method_data,s,s23_clnt,SSL_METHOD) //static
|
sl@0
|
93 |
|
sl@0
|
94 |
/* s23_lib.c */
|
sl@0
|
95 |
VARIABLE_DECL(sslv23_base_method_data,s,s23_lib,SSL_METHOD) //static
|
sl@0
|
96 |
|
sl@0
|
97 |
/* s23_meth.c */
|
sl@0
|
98 |
VARIABLE_DECL(SSLv23_method_data,s,s23_meth,SSL_METHOD) //static
|
sl@0
|
99 |
|
sl@0
|
100 |
/* s23_srvr.c */
|
sl@0
|
101 |
VARIABLE_DECL(SSLv23_server_method_data,s,s23_srvr,SSL_METHOD) //static
|
sl@0
|
102 |
|
sl@0
|
103 |
/* s2_clnt.c */
|
sl@0
|
104 |
VARIABLE_DECL(SSLv2_client_method_data,s,s2_clnt,SSL_METHOD) //static
|
sl@0
|
105 |
|
sl@0
|
106 |
/* s2_lib.c */
|
sl@0
|
107 |
VARIABLE_DECL(sslv2_base_method_data,s,s2_lib,SSL_METHOD) //static
|
sl@0
|
108 |
|
sl@0
|
109 |
/* s2_meth.c */
|
sl@0
|
110 |
VARIABLE_DECL(SSLv2_method_data,s,s2_meth,SSL_METHOD) //static
|
sl@0
|
111 |
|
sl@0
|
112 |
/* s2_srvr.c */
|
sl@0
|
113 |
VARIABLE_DECL(SSLv2_server_method_data,s,s2_srvr,SSL_METHOD) //static
|
sl@0
|
114 |
|
sl@0
|
115 |
/* s3_clnt.c */
|
sl@0
|
116 |
VARIABLE_DECL(SSLv3_client_method_data,s,s3_clnt,SSL_METHOD) //static
|
sl@0
|
117 |
|
sl@0
|
118 |
/* s3_lib.c */
|
sl@0
|
119 |
VARIABLE_DECL(sslv3_base_method_data,s,s3_lib,SSL_METHOD) //static
|
sl@0
|
120 |
|
sl@0
|
121 |
/* s3_meth.c */
|
sl@0
|
122 |
VARIABLE_DECL(SSLv3_method_data,s,s3_meth,SSL_METHOD) //static
|
sl@0
|
123 |
|
sl@0
|
124 |
/* s3_srvr.c */
|
sl@0
|
125 |
VARIABLE_DECL(SSLv3_server_method_data,s,s3_srvr,SSL_METHOD) //static
|
sl@0
|
126 |
|
sl@0
|
127 |
/* t1_clnt.c */
|
sl@0
|
128 |
VARIABLE_DECL(TLSv1_client_method_data,s,t1_clnt,SSL_METHOD) //static
|
sl@0
|
129 |
|
sl@0
|
130 |
/* t1_lib.c */
|
sl@0
|
131 |
VARIABLE_DECL(tlsv1_base_method_data,s,t1_lib,SSL_METHOD) //static
|
sl@0
|
132 |
|
sl@0
|
133 |
/* t1_srvr.c */
|
sl@0
|
134 |
VARIABLE_DECL(TLSv1_server_method_data,s,t1_srvr,SSL_METHOD) //static
|
sl@0
|
135 |
|
sl@0
|
136 |
/* t1_meth.c */
|
sl@0
|
137 |
VARIABLE_DECL(TLSv1_method_data,s,t1_meth,SSL_METHOD) //static
|
sl@0
|
138 |
|
sl@0
|
139 |
/* ssl_cert.c */
|
sl@0
|
140 |
VARIABLE_DECL(ssl_x509_store_ctx_idx,s,ssl_cert,volatile int) //static
|
sl@0
|
141 |
|
sl@0
|
142 |
/* ssl_ciph.c */
|
sl@0
|
143 |
VARIABLE_DECL(ssl_comp_methods,s,ssl_ciph,STACK_OF(SSL_COMP) *) //static
|
sl@0
|
144 |
|
sl@0
|
145 |
/* ssl_ciph.c */
|
sl@0
|
146 |
VARIABLE_DECL_ARRAY(ssl_cipher_methods,s,ssl_ciph,const EVP_CIPHER *,SSL_ENC_NUM_IDX) //static
|
sl@0
|
147 |
|
sl@0
|
148 |
/* ssl_ciph.c */
|
sl@0
|
149 |
VARIABLE_DECL_ARRAY(ssl_digest_methods,s,ssl_ciph,const EVP_MD *,SSL_MD_NUM_IDX) //static
|
sl@0
|
150 |
|
sl@0
|
151 |
|
sl@0
|
152 |
/* ssl_err.c */
|
sl@0
|
153 |
VARIABLE_DECL_ARRAY(SSL_str_functs,s,ssl_err,ERR_STRING_DATA,SSL_STR_FUNCTS_NUM) //static
|
sl@0
|
154 |
|
sl@0
|
155 |
/* ssl_err.c */
|
sl@0
|
156 |
VARIABLE_DECL_ARRAY(SSL_str_reasons,s,ssl_err,ERR_STRING_DATA,SSL_STR_REASONS_NUM) //static
|
sl@0
|
157 |
|
sl@0
|
158 |
/* s3_lib.c */
|
sl@0
|
159 |
VARIABLE_DECL_ARRAY(ssl3_ciphers,g,s3_lib,SSL_CIPHER,SSL3_MAX_NUM_CIPHERS) //global
|
sl@0
|
160 |
|
sl@0
|
161 |
/* s3_lib.c */
|
sl@0
|
162 |
VARIABLE_DECL_ARRAY(ssl2_ciphers,g,s2_lib,SSL_CIPHER,SSL2_MAX_NUM_CIPHERS) //global
|
sl@0
|
163 |
|
sl@0
|
164 |
/* ssl_lib.c */
|
sl@0
|
165 |
VARIABLE_DECL(ssl3_undef_enc_method,g,ssl_lib,SSL3_ENC_METHOD) //static
|
sl@0
|
166 |
|
sl@0
|
167 |
/* d1_lib.c */
|
sl@0
|
168 |
VARIABLE_DECL(DTLSv1_enc_data,g,d1_lib,SSL3_ENC_METHOD) //static
|
sl@0
|
169 |
|
sl@0
|
170 |
/* s3_lib.c */
|
sl@0
|
171 |
VARIABLE_DECL(SSLv3_enc_data,g,s3_lib,SSL3_ENC_METHOD) //static
|
sl@0
|
172 |
|
sl@0
|
173 |
/* t1_lib.c */
|
sl@0
|
174 |
VARIABLE_DECL(TLSv1_enc_data,g,t1_lib,SSL3_ENC_METHOD) //static
|
sl@0
|
175 |
|
sl@0
|
176 |
|
sl@0
|
177 |
}_libssl_wsd;
|
sl@0
|
178 |
|
sl@0
|
179 |
|
sl@0
|
180 |
|
sl@0
|
181 |
#ifdef __cplusplus
|
sl@0
|
182 |
extern "C" {
|
sl@0
|
183 |
#endif
|
sl@0
|
184 |
|
sl@0
|
185 |
|
sl@0
|
186 |
void InitSSLWsdVar(struct _libssl_wsd *p);
|
sl@0
|
187 |
|
sl@0
|
188 |
//void Init_methods_sslp(/*_libssl_wsd *ptr*/);
|
sl@0
|
189 |
|
sl@0
|
190 |
_libssl_wsd* Libssl_ImpurePtr();
|
sl@0
|
191 |
|
sl@0
|
192 |
#ifdef __cplusplus
|
sl@0
|
193 |
}
|
sl@0
|
194 |
#endif
|
sl@0
|
195 |
|
sl@0
|
196 |
#endif /* EMULATOR */
|
sl@0
|
197 |
#endif /* _LIBSSL_WSD_H_ */
|