1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ssl/libcrypto/src/crypto/libcrypto_wsd.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,397 @@
1.4 +/*
1.5 +Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
1.6 +
1.7 +Redistribution and use in source and binary forms, with or without
1.8 +modification, are permitted provided that the following conditions are met:
1.9 +
1.10 +* Redistributions of source code must retain the above copyright notice, this
1.11 + list of conditions and the following disclaimer.
1.12 +* Redistributions in binary form must reproduce the above copyright notice,
1.13 + this list of conditions and the following disclaimer in the documentation
1.14 + and/or other materials provided with the distribution.
1.15 +* Neither the name of Nokia Corporation nor the names of its contributors
1.16 + may be used to endorse or promote products derived from this software
1.17 + without specific prior written permission.
1.18 +
1.19 +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1.20 +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1.21 +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1.22 +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
1.23 +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1.24 +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1.25 +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
1.26 +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
1.27 +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1.28 +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1.29 +
1.30 +Description:
1.31 +*/
1.32 +
1.33 +#ifndef _LIBCRYPTO_WSD_H
1.34 +#define _LIBCRYPTO_WSD_H
1.35 +
1.36 +#include <_ansi.h>
1.37 +#include <sys/cdefs.h>
1.38 +#include <stdio.h>
1.39 +#include <stdlib.h>
1.40 +#include <errno.h>
1.41 +#include <sys/types.h>
1.42 +#include <sys/cdefs.h>
1.43 +#include <sys/socket.h>
1.44 +#include <sys/types.h>
1.45 +#include <sys/ioctl.h>
1.46 +#include <netinet/in.h>
1.47 +#include <libcrypto_wsd_macros.h>
1.48 +#include "cryptlib.h"
1.49 +#include <openssl/asn1.h>
1.50 +#include <openssl/lhash.h>
1.51 +#include <openssl/crypto.h>
1.52 +#include <openssl/err.h>
1.53 +#include <openssl/bn.h>
1.54 +#include <openssl/comp.h>
1.55 +#include <openssl/dso.h>
1.56 +#include <openssl/des.h>
1.57 +#include <openssl/engine.h>
1.58 +#include <openssl/lhash.h>
1.59 +#include <openssl/ossl_typ.h>
1.60 +#include "eng_int.h"
1.61 +#include "rand_lcl.h"
1.62 +#include <openssl/bio.h>
1.63 +#include <openssl/conf.h>
1.64 +#include <openssl/dh.h>
1.65 +#include <openssl/dso.h>
1.66 +#include <openssl/dsa.h>
1.67 +#include <openssl/rsa.h>
1.68 +#include <openssl/store.h>
1.69 +#include <openssl/x509v3.h>
1.70 +#include <openssl/ui.h>
1.71 +#include <openssl/rand.h>
1.72 +#include "str_locl.h"
1.73 +#include "ui_locl.h"
1.74 +#include <zlib.h>
1.75 +
1.76 +#ifdef EMULATOR
1.77 +#define BN_NIST_256_TOP (256+BN_BITS2-1)/BN_BITS2
1.78 +#define BN_NIST_384_TOP (384+BN_BITS2-1)/BN_BITS2
1.79 +
1.80 +# define Z_CALLCONV
1.81 +
1.82 +typedef int (Z_CALLCONV *compress_ft)(Bytef *dest,uLongf *destLen,
1.83 + const Bytef *source, uLong sourceLen);
1.84 +typedef int (Z_CALLCONV *inflateEnd_ft)(z_streamp strm);
1.85 +typedef int (Z_CALLCONV *inflate_ft)(z_streamp strm, int flush);
1.86 +typedef int (Z_CALLCONV *inflateInit__ft)(z_streamp strm,
1.87 + const char * version, int stream_size);
1.88 +typedef int (Z_CALLCONV *deflateEnd_ft)(z_streamp strm);
1.89 +typedef int (Z_CALLCONV *deflate_ft)(z_streamp strm, int flush);
1.90 +typedef int (Z_CALLCONV *deflateInit__ft)(z_streamp strm, int level,
1.91 + const char * version, int stream_size);
1.92 +
1.93 +/* What an "implementation of ex_data functionality" looks like */
1.94 +struct st_CRYPTO_EX_DATA_IMPL
1.95 + {
1.96 + /*********************/
1.97 + /* GLOBAL OPERATIONS */
1.98 + /* Return a new class index */
1.99 + int (*cb_new_class)(void);
1.100 + /* Cleanup all state used by the implementation */
1.101 + void (*cb_cleanup)(void);
1.102 + /************************/
1.103 + /* PER-CLASS OPERATIONS */
1.104 + /* Get a new method index within a class */
1.105 + int (*cb_get_new_index)(int class_index, long argl, void *argp,
1.106 + CRYPTO_EX_new *new_func, CRYPTO_EX_dup *dup_func,
1.107 + CRYPTO_EX_free *free_func);
1.108 + /* Initialise a new CRYPTO_EX_DATA of a given class */
1.109 + int (*cb_new_ex_data)(int class_index, void *obj,
1.110 + CRYPTO_EX_DATA *ad);
1.111 + /* Duplicate a CRYPTO_EX_DATA of a given class onto a copy */
1.112 + int (*cb_dup_ex_data)(int class_index, CRYPTO_EX_DATA *to,
1.113 + CRYPTO_EX_DATA *from);
1.114 + /* Cleanup a CRYPTO_EX_DATA of a given class */
1.115 + void (*cb_free_ex_data)(int class_index, void *obj,
1.116 + CRYPTO_EX_DATA *ad);
1.117 + };
1.118 +
1.119 +struct st_ERR_FNS
1.120 + {
1.121 + /* Works on the "error_hash" string table */
1.122 + LHASH *(*cb_err_get)(int create);
1.123 + void (*cb_err_del)(void);
1.124 + ERR_STRING_DATA *(*cb_err_get_item)(const ERR_STRING_DATA *);
1.125 + ERR_STRING_DATA *(*cb_err_set_item)(ERR_STRING_DATA *);
1.126 + ERR_STRING_DATA *(*cb_err_del_item)(ERR_STRING_DATA *);
1.127 + /* Works on the "thread_hash" error-state table */
1.128 + LHASH *(*cb_thread_get)(int create);
1.129 + void (*cb_thread_release)(LHASH **hash);
1.130 + ERR_STATE *(*cb_thread_get_item)(const ERR_STATE *);
1.131 + ERR_STATE *(*cb_thread_set_item)(ERR_STATE *);
1.132 + void (*cb_thread_del_item)(const ERR_STATE *);
1.133 + /* Returns the next available error "library" numbers */
1.134 + int (*cb_get_next_lib)(void);
1.135 + };
1.136 +
1.137 +
1.138 +#ifdef __cplusplus
1.139 +extern "C"
1.140 +{
1.141 +#endif
1.142 +
1.143 +typedef struct
1.144 +{
1.145 +
1.146 +
1.147 + VARIABLE_DECL(tntmp,s,asn1_gen,struct tag_name_st*)
1.148 + VARIABLE_DECL(ia5string_meth,s,a_meth,ASN1_METHOD)
1.149 + VARIABLE_DECL(bit_string_meth,s,a_meth,ASN1_METHOD)
1.150 + VARIABLE_DECL(stable,s,a_strnid,STACK_OF(ASN1_STRING_TABLE)*)
1.151 + VARIABLE_DECL(global_mask,s,a_strnid,unsigned long)
1.152 + VARIABLE_DECL(app_locks,s,cryptlib,STACK *)
1.153 + VARIABLE_DECL(dyn_locks,s,cryptlib,STACK_OF(CRYPTO_dynlock)*)
1.154 + VARIABLE_DECL(allow_customize,s,mem,int)
1.155 + VARIABLE_DECL(allow_customize_debug,s,mem,int)
1.156 + VARIABLE_DECL(mh_mode,s,mem_dbg,int)
1.157 + VARIABLE_DECL(order,s,mem_dbg,unsigned long)
1.158 + VARIABLE_DECL(mh,s,mem_dbg,LHASH *)
1.159 + VARIABLE_DECL(amih,s,mem_dbg,LHASH *)
1.160 + VARIABLE_DECL(options,s,mem_dbg,unsigned long)
1.161 + VARIABLE_DECL(num_disable,s,mem_dbg,unsigned int)
1.162 + VARIABLE_DECL(disabling_thread,s,mem_dbg,unsigned long)
1.163 + VARIABLE_DECL(impl,s,ex_data,CRYPTO_EX_DATA_IMPL *)
1.164 + VARIABLE_DECL(ex_class,s,ex_data,int)
1.165 + VARIABLE_DECL(ex_data,s,ex_data,LHASH *)
1.166 + VARIABLE_DECL(init,s,bn_lib,int)
1.167 + VARIABLE_DECL_ARRAY(data,s,bn_lib,char,16)
1.168 + VARIABLE_DECL(data_one,s,bn_lib,BN_ULONG)
1.169 + VARIABLE_DECL(const_one,s,bn_lib,BIGNUM)
1.170 + VARIABLE_DECL_ARRAY(_256_data,s,bn_nist,BN_ULONG,BN_NIST_256_TOP*6)
1.171 + VARIABLE_DECL(_is_set_256_data,s,bn_nist,int)
1.172 + VARIABLE_DECL_ARRAY(_384_data,s,bn_nist,BN_ULONG,BN_NIST_384_TOP*8)
1.173 + VARIABLE_DECL(_is_set_384_data,s,bn_nist,int)
1.174 + VARIABLE_DECL(zlib_stateful_ex_idx,s,c_zlib,int)
1.175 + VARIABLE_DECL(p_compress,s,c_zlib,compress_ft)
1.176 + VARIABLE_DECL(p_inflateEnd,s,c_zlib,inflateEnd_ft)
1.177 + VARIABLE_DECL(p_inflate,s,c_zlib,inflate_ft)
1.178 + VARIABLE_DECL(p_inflateInit_,s,c_zlib,inflateInit__ft)
1.179 + VARIABLE_DECL(p_deflateEnd,s,c_zlib,deflateEnd_ft)
1.180 + VARIABLE_DECL(p_deflate,s,c_zlib,deflate_ft)
1.181 + VARIABLE_DECL(p_deflateInit_,s,c_zlib,deflateInit__ft)
1.182 + VARIABLE_DECL(zlib_loaded,s,c_zlib,int)
1.183 + VARIABLE_DECL(zlib_dso,s,c_zlib,DSO *)
1.184 + VARIABLE_DECL(supported_modules,s,conf_mod,STACK_OF(CONF_MODULE)*)
1.185 + VARIABLE_DECL(initialized_modules,s,conf_mod,STACK_OF(CONF_MODULE)*)
1.186 + VARIABLE_DECL(openssl_configured,s,conf_sap,int)
1.187 + VARIABLE_DECL(init,s,ecb_enc,int)
1.188 + VARIABLE_DECL_ARRAY(buf,s,ecb_enc,char,32)
1.189 + VARIABLE_DECL(net,s,enc_read,unsigned char *)
1.190 + VARIABLE_DECL(unnet,s,enc_read,unsigned char *)
1.191 + VARIABLE_DECL(unnet_start,s,enc_read,int)
1.192 + VARIABLE_DECL(unnet_left,s,enc_read,int)
1.193 + VARIABLE_DECL(tmpbuf,s,enc_read,unsigned char *)
1.194 + VARIABLE_DECL(outbuf,s,enc_write,unsigned char *)
1.195 + VARIABLE_DECL(start,s,enc_write,int)
1.196 + VARIABLE_DECL_ARRAY(weak_keys,s,set_key_c,DES_cblock,16)
1.197 + VARIABLE_DECL(cleanup_stack,s,eng_lib,STACK_OF(ENGINE_CLEANUP_ITEM) *)
1.198 + VARIABLE_DECL(internal_static_hack,s,eng_lib,int)
1.199 + VARIABLE_DECL(engine_list_head,s,eng_list,ENGINE *)
1.200 + VARIABLE_DECL(engine_list_tail,s,eng_list,ENGINE *)
1.201 + VARIABLE_DECL(table_flags,s,eng_table,unsigned int)
1.202 + VARIABLE_DECL(initialized_engines,s,eng_cnf,STACK_OF(ENGINE) *)
1.203 + VARIABLE_DECL(dynamic_ex_data_idx,s,eng_dyn,int)
1.204 + VARIABLE_DECL(rsa_table,s,tb_rsa,ENGINE_TABLE *)
1.205 + VARIABLE_DECL(dsa_table,s,tb_dsa,ENGINE_TABLE *)
1.206 + VARIABLE_DECL(ecdh_table,s,tb_ecdh,ENGINE_TABLE *)
1.207 + VARIABLE_DECL(ecdsa_table,s,tb_ecdsa,ENGINE_TABLE *)
1.208 + VARIABLE_DECL(rand_table,s,tb_rand,ENGINE_TABLE *)
1.209 + VARIABLE_DECL(digest_table,s,tb_digest,ENGINE_TABLE *)
1.210 + VARIABLE_DECL(store_table,s,tb_store,ENGINE_TABLE *)
1.211 + VARIABLE_DECL(dh_table,s,tb_dh,ENGINE_TABLE *)
1.212 + VARIABLE_DECL(cipher_table,s,tb_cipher,ENGINE_TABLE *)
1.213 + VARIABLE_DECL(err_fns,s,err,const ERR_FNS *)
1.214 + VARIABLE_DECL(int_error_hash,s,err,LHASH *)
1.215 + VARIABLE_DECL(int_thread_hash,s,err,LHASH *)
1.216 + VARIABLE_DECL(int_thread_hash_references,s,err,int)
1.217 + VARIABLE_DECL(int_err_library_number,s,err,int)
1.218 + VARIABLE_DECL(init,s,err,int)
1.219 + VARIABLE_DECL(pbe_algs,s,evp_pbe,STACK *)
1.220 + VARIABLE_DECL(names_lh,s,o_names,LHASH *)
1.221 + VARIABLE_DECL(names_type_num,s,o_names,int)
1.222 + VARIABLE_DECL(name_funcs_stack,s,o_names,STACK_OF(NAME_FUNCS)*)
1.223 + VARIABLE_DECL(free_type,s,o_names,int)
1.224 + VARIABLE_DECL(new_nid,s,obj_dat,int)
1.225 + VARIABLE_DECL(added,s,obj_dat,LHASH *)
1.226 + VARIABLE_DECL(state_num,s,md_rand,int)
1.227 + VARIABLE_DECL(state_index,s,md_rand,int)
1.228 + VARIABLE_DECL_ARRAY(state,s,md_rand,unsigned char,1023+MD_DIGEST_LENGTH)
1.229 + VARIABLE_DECL_ARRAY(md,s,md_rand,unsigned char,MD_DIGEST_LENGTH)
1.230 + VARIABLE_DECL_ARRAY(md_count,s,md_rand,unsigned char,2)
1.231 + VARIABLE_DECL(entropy,s,md_rand,double)
1.232 + VARIABLE_DECL(initialized,s,md_rand,int)
1.233 + VARIABLE_DECL(crypto_lock_rand,s,md_rand,unsigned int)
1.234 + VARIABLE_DECL(locking_thread,s,md_rand,unsigned long)
1.235 + VARIABLE_DECL(default_RAND_meth,s,rand_lib,const RAND_METHOD *)
1.236 + VARIABLE_DECL(tty_in,s,ui_openssl,FILE *)
1.237 + VARIABLE_DECL(tty_out,s,ui_openssl,FILE *)
1.238 + VARIABLE_DECL(is_a_tty,s,ui_openssl,int)
1.239 + VARIABLE_DECL(ext_nids,s,x509_req,int*)
1.240 + VARIABLE_DECL_ARRAY(ext_nid_list,s,x509_req,int,3)
1.241 + VARIABLE_DECL(trtable,s,x509_trs,STACK_OF(X509_TRUST) *)
1.242 + VARIABLE_DECL(param_table,s,x509_vpm,STACK_OF(X509_VERIFY_PARAM) *)
1.243 + VARIABLE_DECL(ext_list,s,v3_lib,STACK_OF(X509V3_EXT_METHOD) *)
1.244 + VARIABLE_DECL(xptable,s,v3_purp,STACK_OF(X509_PURPOSE)*)
1.245 + VARIABLE_DECL(from,s,b_sock,struct sockaddr_in)
1.246 + VARIABLE_DECL_ARRAY(buff,s,fcrypt,char,14)
1.247 + VARIABLE_DECL_ARRAY(buf,s,err,char,256)
1.248 + VARIABLE_DECL(fallback,s,err,ERR_STATE)
1.249 + VARIABLE_DECL_ARRAY(SYS_str_reasons,s,err,ERR_STRING_DATA,128)//NUM_SYS_STR_REASONS + 1
1.250 + VARIABLE_DECL_ARRAY(prompt_string,s,evp_key,char,80)
1.251 + VARIABLE_DECL_ARRAY(m,s,hmac,unsigned char,EVP_MAX_MD_SIZE)
1.252 + VARIABLE_DECL_ARRAY(m,s,md2,unsigned char,EVP_MAX_MD_SIZE)
1.253 + VARIABLE_DECL_ARRAY(m,s,md5,unsigned char,EVP_MAX_MD_SIZE)
1.254 + VARIABLE_DECL_ARRAY(m,s,sha1_one,unsigned char,SHA_DIGEST_LENGTH)
1.255 + VARIABLE_DECL_ARRAY(m,s,sha_one,unsigned char,EVP_MAX_MD_SIZE)
1.256 + VARIABLE_DECL_ARRAY(buf,s,x509_txt,char,100)
1.257 + VARIABLE_DECL_ARRAY(ASN1_str_functs,s,asn1_err, ERR_STRING_DATA,108)
1.258 + VARIABLE_DECL_ARRAY(ASN1_str_reasons,s,asn1_err,ERR_STRING_DATA,99)
1.259 + VARIABLE_DECL_ARRAY(CRYPTO_str_functs,s,cpt_err,ERR_STRING_DATA,10)
1.260 + VARIABLE_DECL_ARRAY(CRYPTO_str_reasons,s,cpt_err,ERR_STRING_DATA,2)
1.261 + VARIABLE_DECL_ARRAY(BIO_str_functs,s,bio_err,ERR_STRING_DATA,33)
1.262 + VARIABLE_DECL_ARRAY(BIO_str_reasons,s,bio_err,ERR_STRING_DATA,30)
1.263 + VARIABLE_DECL_ARRAY(BN_str_functs,s,bn_err,ERR_STRING_DATA,39)
1.264 + VARIABLE_DECL_ARRAY(BN_str_reasons,s,bn_err,ERR_STRING_DATA,18)
1.265 + VARIABLE_DECL_ARRAY(BUF_str_functs,s,buf_err,ERR_STRING_DATA,7)
1.266 + VARIABLE_DECL_ARRAY(BUF_str_reasons,s,buf_err,ERR_STRING_DATA,1)
1.267 + VARIABLE_DECL_ARRAY(COMP_str_functs,s,comp_err,ERR_STRING_DATA,1)
1.268 + VARIABLE_DECL_ARRAY(COMP_str_reasons,s,comp_err,ERR_STRING_DATA,1)
1.269 + VARIABLE_DECL_ARRAY(CONF_str_functs,s,conf_err,ERR_STRING_DATA,22)
1.270 + VARIABLE_DECL_ARRAY(CONF_str_reasons,s,conf_err,ERR_STRING_DATA,16)
1.271 + VARIABLE_DECL_ARRAY(DH_str_functs,s,dh_err,ERR_STRING_DATA,8)
1.272 + VARIABLE_DECL_ARRAY(DH_str_reasons,s,dh_err,ERR_STRING_DATA,4)
1.273 + VARIABLE_DECL_ARRAY(DSA_str_functs,s,dsa_err,ERR_STRING_DATA,15)
1.274 + VARIABLE_DECL_ARRAY(DSA_str_reasons,s,dsa_err,ERR_STRING_DATA,3)
1.275 + VARIABLE_DECL_ARRAY(DSO_str_functs,s,dso_err,ERR_STRING_DATA,38)
1.276 + VARIABLE_DECL_ARRAY(DSO_str_reasons,s,dso_err,ERR_STRING_DATA,18)
1.277 + VARIABLE_DECL_ARRAY(ENGINE_str_functs,s,eng_err,ERR_STRING_DATA,37)
1.278 + VARIABLE_DECL_ARRAY(ENGINE_str_reasons,s,eng_err,ERR_STRING_DATA,40)
1.279 + VARIABLE_DECL_ARRAY(ERR_str_libraries,s,err_err,ERR_STRING_DATA,25)
1.280 + VARIABLE_DECL_ARRAY(ERR_str_functs,s,err_err,ERR_STRING_DATA,11)
1.281 + VARIABLE_DECL_ARRAY(ERR_str_reasons,s,err_err,ERR_STRING_DATA,36)
1.282 + VARIABLE_DECL_ARRAY(EVP_str_functs,s,evp_err,ERR_STRING_DATA,36)
1.283 + VARIABLE_DECL_ARRAY(EVP_str_reasons,s,evp_err,ERR_STRING_DATA,45)
1.284 + VARIABLE_DECL_ARRAY(OBJ_str_functs,s,obj_err,ERR_STRING_DATA,8)
1.285 + VARIABLE_DECL_ARRAY(OBJ_str_reasons,s,obj_err,ERR_STRING_DATA,3)
1.286 + VARIABLE_DECL_ARRAY(OCSP_str_functs,s,ocsp_err,ERR_STRING_DATA,18)
1.287 + VARIABLE_DECL_ARRAY(OCSP_str_reasons,s,ocsp_err,ERR_STRING_DATA,31)
1.288 + VARIABLE_DECL_ARRAY(PEM_str_functs,s,pem_err,ERR_STRING_DATA,27)
1.289 + VARIABLE_DECL_ARRAY(PEM_str_reasons,s,pem_err,ERR_STRING_DATA,17)
1.290 + VARIABLE_DECL_ARRAY(PKCS7_str_functs,s,pkcs7_err,ERR_STRING_DATA,29)
1.291 + VARIABLE_DECL_ARRAY(PKCS7_str_reasons,s,pkcs7_err,ERR_STRING_DATA,47)
1.292 + VARIABLE_DECL_ARRAY(PKCS12_str_functs,s,pkcs12_err,ERR_STRING_DATA,30)
1.293 + VARIABLE_DECL_ARRAY(PKCS12_str_reasons,s,pkcs12_err,ERR_STRING_DATA,23)
1.294 + VARIABLE_DECL_ARRAY(RAND_str_functs,s,rand_err,ERR_STRING_DATA,3)
1.295 + VARIABLE_DECL_ARRAY(RAND_str_reasons,s,rand_err,ERR_STRING_DATA,2)
1.296 + VARIABLE_DECL_ARRAY(RSA_str_functs,s,rsa_err,ERR_STRING_DATA,38)
1.297 + VARIABLE_DECL_ARRAY(RSA_str_reasons,s,rsa_err,ERR_STRING_DATA,41)
1.298 + VARIABLE_DECL_ARRAY(UI_str_functs,s,ui_err,ERR_STRING_DATA,13)
1.299 + VARIABLE_DECL_ARRAY(UI_str_reasons,s,ui_err,ERR_STRING_DATA,8)
1.300 + VARIABLE_DECL_ARRAY(X509_str_functs,s,x509_err,ERR_STRING_DATA,46)
1.301 + VARIABLE_DECL_ARRAY(X509_str_reasons,s,x509_err,ERR_STRING_DATA,24)
1.302 + VARIABLE_DECL_ARRAY(X509V3_str_functs,s,x509v3_err,ERR_STRING_DATA,57)
1.303 + VARIABLE_DECL_ARRAY(X509V3_str_reasons,s,x509v3_err,ERR_STRING_DATA,61)
1.304 + VARIABLE_DECL(default_CONF_method,s,conf_lib,const CONF_METHOD *)
1.305 + VARIABLE_DECL(default_DH_method,s,dh_lib,const DH_METHOD *)
1.306 + VARIABLE_DECL(default_DSA_method,s,dsa_lib,const DSA_METHOD *)
1.307 + VARIABLE_DECL(default_DSO_meth,s,dso_lib,DSO_METHOD *)
1.308 + VARIABLE_DECL(default_RSA_meth,s,rsa_lib,const RSA_METHOD *)
1.309 + VARIABLE_DECL(default_UI_meth,s,ui_lib,const UI_METHOD *)
1.310 +
1.311 + void *(*malloc_func)(size_t);
1.312 + void *(*malloc_ex_func)(size_t, const char *file, int line);
1.313 + void *(*realloc_func)(void *, size_t);
1.314 + void *(*realloc_ex_func)(void *, size_t, const char *file, int line);
1.315 + void (*free_func_openssl)(void *);
1.316 + void *(*malloc_locked_func)(size_t);
1.317 + void *(*malloc_locked_ex_func)(size_t, const char *file, int line);
1.318 + void (*free_locked_func)(void *);
1.319 + void (*malloc_debug_func)(void *,int,const char *,int,int);
1.320 + void (*realloc_debug_func)(void *,void *,int,const char *,int,int);
1.321 + void (*free_debug_func)(void *,int);
1.322 + void (*set_debug_options_func)(long);
1.323 + long (*get_debug_options_func)(void);
1.324 + void (MS_FAR *locking_callback)(int mode,int type,
1.325 + const char *file,int line);
1.326 + int (MS_FAR *add_lock_callback)(int *pointer,int amount,
1.327 + int type,const char *file,int line);
1.328 + unsigned long (MS_FAR *id_callback)(void);
1.329 + struct CRYPTO_dynlock_value *(MS_FAR *dynlock_create_callback)
1.330 + (const char *file,int line);
1.331 + void (MS_FAR *dynlock_lock_callback)(int mode,
1.332 + struct CRYPTO_dynlock_value *l, const char *file,int line);
1.333 + void (MS_FAR *dynlock_destroy_callback)(struct CRYPTO_dynlock_value *l,
1.334 + const char *file,int line);
1.335 +
1.336 + /*START-static structs*/
1.337 + VARIABLE_DECL(impl_default,s,ex_data,CRYPTO_EX_DATA_IMPL)
1.338 + VARIABLE_DECL(mem_method,s,bss_mem,BIO_METHOD)
1.339 + VARIABLE_DECL(null_method,s,bss_null,BIO_METHOD)
1.340 + VARIABLE_DECL(methods_fdp,s,bss_fd,BIO_METHOD)
1.341 + VARIABLE_DECL(methods_sockp,s,bss_sock,BIO_METHOD)
1.342 + VARIABLE_DECL(methods_filep,s,bss_file,BIO_METHOD)
1.343 + VARIABLE_DECL(methods_dgramp,s,bss_dgram,BIO_METHOD)
1.344 + VARIABLE_DECL(methods_connectp,s,bss_conn,BIO_METHOD)
1.345 + VARIABLE_DECL(methods_biop,s,bss_bio,BIO_METHOD)
1.346 + VARIABLE_DECL(methods_acceptp,s,bss_acpt,BIO_METHOD)
1.347 + VARIABLE_DECL(rle_method,s,c_rle,COMP_METHOD)
1.348 + VARIABLE_DECL(zlib_method_nozlib,s,c_zlib,COMP_METHOD)
1.349 +#ifdef ZLIB
1.350 + VARIABLE_DECL(zlib_stateful_method,s,c_zlib,COMP_METHOD)
1.351 +#endif
1.352 + VARIABLE_DECL(default_method,s,conf_def,CONF_METHOD)
1.353 + VARIABLE_DECL(WIN32_method,s,conf_def,CONF_METHOD)
1.354 + VARIABLE_DECL(dh_ossl,s,dh_key,DH_METHOD)
1.355 + VARIABLE_DECL(openssl_dsa_meth,s,dsa_ossl,DSA_METHOD)
1.356 + //VARIABLE_DECL(dso_meth_dl,s,dso_dl,DSO_METHOD)
1.357 + VARIABLE_DECL(dso_meth_dlfcn,s,dso_dlfcn,DSO_METHOD)
1.358 + VARIABLE_DECL(dso_meth_null,s,dso_null,DSO_METHOD)
1.359 + VARIABLE_DECL(methods_md,s,bio_md,BIO_METHOD)
1.360 + VARIABLE_DECL(methods_b64,s,bio_b64,BIO_METHOD)
1.361 + VARIABLE_DECL(methods_enc,s,bio_enc,BIO_METHOD)
1.362 + VARIABLE_DECL(methods_ok,s,bio_ok,BIO_METHOD)
1.363 + VARIABLE_DECL(rsa_pkcs1_eay_meth,s,rsa_eay,RSA_METHOD )
1.364 + VARIABLE_DECL(store_memory,s,str_mem,STORE_METHOD)
1.365 + VARIABLE_DECL(ui_openssl,s,ui_openssl,UI_METHOD)
1.366 + VARIABLE_DECL(nconf_method,s,v3_conf,X509V3_CONF_METHOD)
1.367 + VARIABLE_DECL(conf_lhash_method,s,v3_conf,X509V3_CONF_METHOD)
1.368 + VARIABLE_DECL(meth,s,x_x509,ASN1_METHOD)
1.369 + VARIABLE_DECL(method,s,rsa_asn1,ASN1_METHOD)
1.370 + VARIABLE_DECL(stirred_pool,s,md_rand,volatile int)
1.371 +
1.372 + char strerror_tab[127][32];
1.373 + int _shadow_DES_rw_mode;
1.374 + int _shadow_DES_check_key;
1.375 +
1.376 + /*END-static structs*/
1.377 + /*START-global vars*/
1.378 + VARIABLE_DECL(cleanse_ctr,g,mem_clr,unsigned char)
1.379 + VARIABLE_DECL(rand_ssleay_meth,g,md_rand, RAND_METHOD)
1.380 + VARIABLE_DECL(x509_file_lookup,g,by_file,X509_LOOKUP_METHOD)
1.381 + VARIABLE_DECL(x509_dir_lookup,g,by_dir,X509_LOOKUP_METHOD)
1.382 +
1.383 + /*END-global vars*/
1.384 +
1.385 + }libcrypto_global_struct;
1.386 +#ifdef __cplusplus
1.387 +}
1.388 +#endif
1.389 +#ifdef __cplusplus
1.390 +extern "C"
1.391 +{
1.392 +#endif
1.393 +libcrypto_global_struct * libcrypto_ImpurePtr();
1.394 +int libcrypto_Init(libcrypto_global_struct *);
1.395 +#ifdef __cplusplus
1.396 +}
1.397 +#endif
1.398 +
1.399 +#endif /* EMULATOR */
1.400 +#endif //_LIBCRYPTO_WSD_H
1.401 \ No newline at end of file