sl@0: /* sl@0: Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. sl@0: sl@0: Redistribution and use in source and binary forms, with or without sl@0: modification, are permitted provided that the following conditions are met: sl@0: sl@0: * Redistributions of source code must retain the above copyright notice, this sl@0: list of conditions and the following disclaimer. sl@0: * Redistributions in binary form must reproduce the above copyright notice, sl@0: this list of conditions and the following disclaimer in the documentation sl@0: and/or other materials provided with the distribution. sl@0: * Neither the name of Nokia Corporation nor the names of its contributors sl@0: may be used to endorse or promote products derived from this software sl@0: without specific prior written permission. sl@0: sl@0: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" sl@0: AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE sl@0: IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE sl@0: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE sl@0: FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL sl@0: DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR sl@0: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER sl@0: CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, sl@0: OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE sl@0: OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. sl@0: sl@0: Description: sl@0: */ sl@0: sl@0: sl@0: #ifndef _LIBSSL_WSD_H_ sl@0: #define _LIBSSL_WSD_H_ sl@0: sl@0: sl@0: #include sl@0: #include sl@0: #include "libssl_wsd_defs.h" sl@0: sl@0: #ifdef EMULATOR sl@0: sl@0: sl@0: #define SSL_MD_NUM_IDX 2 sl@0: #define SSL_ENC_NUM_IDX 9 sl@0: sl@0: #define SSL_STR_FUNCTS_NUM 172 sl@0: #define SSL_STR_REASONS_NUM 238 sl@0: sl@0: #define SSL3_MAX_NUM_CIPHERS 87 /* Must be updated once new ciphers are added. */ sl@0: #define SSL2_MAX_NUM_CIPHERS 10 /* Must be updated once new ciphers are added. */ sl@0: sl@0: #define SSL3_NUM_CIPHERS (sizeof(temp_ssl3_ciphers)/sizeof(SSL_CIPHER)) sl@0: #define SSL2_NUM_CIPHERS (sizeof(temp_ssl2_ciphers)/sizeof(SSL_CIPHER)) sl@0: sl@0: /* This is for the SSLv3/TLSv1.0 differences in crypto/hash stuff sl@0: * It is a bit of a mess of functions, but hell, think of it as sl@0: * an opaque structure :-) */ sl@0: typedef struct ssl3_enc_method sl@0: { sl@0: int (*enc)(SSL *, int); sl@0: int (*mac)(SSL *, unsigned char *, int); sl@0: int (*setup_key_block)(SSL *); sl@0: int (*generate_master_secret)(SSL *, unsigned char *, unsigned char *, int); sl@0: int (*change_cipher_state)(SSL *, int); sl@0: int (*final_finish_mac)(SSL *, EVP_MD_CTX *, EVP_MD_CTX *, const char *, int, unsigned char *); sl@0: int finish_mac_length; sl@0: int (*cert_verify_mac)(SSL *, EVP_MD_CTX *, unsigned char *); sl@0: const char *client_finished_label; sl@0: int client_finished_label_len; sl@0: const char *server_finished_label; sl@0: int server_finished_label_len; sl@0: int (*alert_value)(int); sl@0: } SSL3_ENC_METHOD; sl@0: sl@0: typedef struct{ sl@0: sl@0: /* bio_ssl.c */ sl@0: VARIABLE_DECL(methods_sslp,s,bio_ssl,BIO_METHOD) //static sl@0: sl@0: /* d1_meth.c */ sl@0: VARIABLE_DECL(DTLSv1_method_data,s,d1_meth,SSL_METHOD) //static sl@0: sl@0: /* d1_clnt.c */ sl@0: VARIABLE_DECL(DTLSv1_client_method_data,s,d1_clnt,SSL_METHOD) //static sl@0: sl@0: /* d1_lib.c */ sl@0: VARIABLE_DECL(dtlsv1_base_method_data,s,d1_lib,SSL_METHOD) //static sl@0: sl@0: /* d1_srvr.c */ sl@0: VARIABLE_DECL(DTLSv1_server_method_data,s,d1_srvr,SSL_METHOD) //static sl@0: sl@0: /* s23_clnt.c */ sl@0: VARIABLE_DECL(SSLv23_client_method_data,s,s23_clnt,SSL_METHOD) //static sl@0: sl@0: /* s23_lib.c */ sl@0: VARIABLE_DECL(sslv23_base_method_data,s,s23_lib,SSL_METHOD) //static sl@0: sl@0: /* s23_meth.c */ sl@0: VARIABLE_DECL(SSLv23_method_data,s,s23_meth,SSL_METHOD) //static sl@0: sl@0: /* s23_srvr.c */ sl@0: VARIABLE_DECL(SSLv23_server_method_data,s,s23_srvr,SSL_METHOD) //static sl@0: sl@0: /* s2_clnt.c */ sl@0: VARIABLE_DECL(SSLv2_client_method_data,s,s2_clnt,SSL_METHOD) //static sl@0: sl@0: /* s2_lib.c */ sl@0: VARIABLE_DECL(sslv2_base_method_data,s,s2_lib,SSL_METHOD) //static sl@0: sl@0: /* s2_meth.c */ sl@0: VARIABLE_DECL(SSLv2_method_data,s,s2_meth,SSL_METHOD) //static sl@0: sl@0: /* s2_srvr.c */ sl@0: VARIABLE_DECL(SSLv2_server_method_data,s,s2_srvr,SSL_METHOD) //static sl@0: sl@0: /* s3_clnt.c */ sl@0: VARIABLE_DECL(SSLv3_client_method_data,s,s3_clnt,SSL_METHOD) //static sl@0: sl@0: /* s3_lib.c */ sl@0: VARIABLE_DECL(sslv3_base_method_data,s,s3_lib,SSL_METHOD) //static sl@0: sl@0: /* s3_meth.c */ sl@0: VARIABLE_DECL(SSLv3_method_data,s,s3_meth,SSL_METHOD) //static sl@0: sl@0: /* s3_srvr.c */ sl@0: VARIABLE_DECL(SSLv3_server_method_data,s,s3_srvr,SSL_METHOD) //static sl@0: sl@0: /* t1_clnt.c */ sl@0: VARIABLE_DECL(TLSv1_client_method_data,s,t1_clnt,SSL_METHOD) //static sl@0: sl@0: /* t1_lib.c */ sl@0: VARIABLE_DECL(tlsv1_base_method_data,s,t1_lib,SSL_METHOD) //static sl@0: sl@0: /* t1_srvr.c */ sl@0: VARIABLE_DECL(TLSv1_server_method_data,s,t1_srvr,SSL_METHOD) //static sl@0: sl@0: /* t1_meth.c */ sl@0: VARIABLE_DECL(TLSv1_method_data,s,t1_meth,SSL_METHOD) //static sl@0: sl@0: /* ssl_cert.c */ sl@0: VARIABLE_DECL(ssl_x509_store_ctx_idx,s,ssl_cert,volatile int) //static sl@0: sl@0: /* ssl_ciph.c */ sl@0: VARIABLE_DECL(ssl_comp_methods,s,ssl_ciph,STACK_OF(SSL_COMP) *) //static sl@0: sl@0: /* ssl_ciph.c */ sl@0: VARIABLE_DECL_ARRAY(ssl_cipher_methods,s,ssl_ciph,const EVP_CIPHER *,SSL_ENC_NUM_IDX) //static sl@0: sl@0: /* ssl_ciph.c */ sl@0: VARIABLE_DECL_ARRAY(ssl_digest_methods,s,ssl_ciph,const EVP_MD *,SSL_MD_NUM_IDX) //static sl@0: sl@0: sl@0: /* ssl_err.c */ sl@0: VARIABLE_DECL_ARRAY(SSL_str_functs,s,ssl_err,ERR_STRING_DATA,SSL_STR_FUNCTS_NUM) //static sl@0: sl@0: /* ssl_err.c */ sl@0: VARIABLE_DECL_ARRAY(SSL_str_reasons,s,ssl_err,ERR_STRING_DATA,SSL_STR_REASONS_NUM) //static sl@0: sl@0: /* s3_lib.c */ sl@0: VARIABLE_DECL_ARRAY(ssl3_ciphers,g,s3_lib,SSL_CIPHER,SSL3_MAX_NUM_CIPHERS) //global sl@0: sl@0: /* s3_lib.c */ sl@0: VARIABLE_DECL_ARRAY(ssl2_ciphers,g,s2_lib,SSL_CIPHER,SSL2_MAX_NUM_CIPHERS) //global sl@0: sl@0: /* ssl_lib.c */ sl@0: VARIABLE_DECL(ssl3_undef_enc_method,g,ssl_lib,SSL3_ENC_METHOD) //static sl@0: sl@0: /* d1_lib.c */ sl@0: VARIABLE_DECL(DTLSv1_enc_data,g,d1_lib,SSL3_ENC_METHOD) //static sl@0: sl@0: /* s3_lib.c */ sl@0: VARIABLE_DECL(SSLv3_enc_data,g,s3_lib,SSL3_ENC_METHOD) //static sl@0: sl@0: /* t1_lib.c */ sl@0: VARIABLE_DECL(TLSv1_enc_data,g,t1_lib,SSL3_ENC_METHOD) //static sl@0: sl@0: sl@0: }_libssl_wsd; sl@0: sl@0: sl@0: sl@0: #ifdef __cplusplus sl@0: extern "C" { sl@0: #endif sl@0: sl@0: sl@0: void InitSSLWsdVar(struct _libssl_wsd *p); sl@0: sl@0: //void Init_methods_sslp(/*_libssl_wsd *ptr*/); sl@0: sl@0: _libssl_wsd* Libssl_ImpurePtr(); sl@0: sl@0: #ifdef __cplusplus sl@0: } sl@0: #endif sl@0: sl@0: #endif /* EMULATOR */ sl@0: #endif /* _LIBSSL_WSD_H_ */