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 |
#include <e32std.h>
|
sl@0
|
31 |
#include <_ansi.h>
|
sl@0
|
32 |
#include <libcrypto_wsd.h>
|
sl@0
|
33 |
#include <stdlib.h>
|
sl@0
|
34 |
#include <openssl/objects.h>
|
sl@0
|
35 |
#include <openssl/bn.h>
|
sl@0
|
36 |
#include <openssl/buffer.h>
|
sl@0
|
37 |
#include <openssl/comp.h>
|
sl@0
|
38 |
#include <openssl/conf.h>
|
sl@0
|
39 |
#include <openssl/dh.h>
|
sl@0
|
40 |
#include <openssl/dsa.h>
|
sl@0
|
41 |
#include <openssl/dso.h>
|
sl@0
|
42 |
#include <openssl/engine.h>
|
sl@0
|
43 |
#include <openssl/err.h>
|
sl@0
|
44 |
#include <openssl/evp.h>
|
sl@0
|
45 |
#include <openssl/ocsp.h>
|
sl@0
|
46 |
#include <openssl/pem.h>
|
sl@0
|
47 |
#include <openssl/pkcs7.h>
|
sl@0
|
48 |
#include <openssl/pkcs12.h>
|
sl@0
|
49 |
#include <openssl/rand.h>
|
sl@0
|
50 |
#include <openssl/rsa.h>
|
sl@0
|
51 |
#include <openssl/ui.h>
|
sl@0
|
52 |
#include <openssl/x509.h>
|
sl@0
|
53 |
#include <openssl/x509v3.h>
|
sl@0
|
54 |
#include <openssl/lhash.h>
|
sl@0
|
55 |
#include <openssl/crypto.h>
|
sl@0
|
56 |
#include "obj_dat.h"
|
sl@0
|
57 |
//#include "libcrypto_wsd_solution.h"
|
sl@0
|
58 |
#ifdef __WINSCW__
|
sl@0
|
59 |
#include <emulator.h> //GetProcAddress, GetModuleHandle
|
sl@0
|
60 |
#include "pls.h" // For emulator WSD API
|
sl@0
|
61 |
const TUid KLibdlUid3 = {0x10281F35}; // This is the UID of the library
|
sl@0
|
62 |
#endif//defined(__WINSCW__) || defined(__WINS__)
|
sl@0
|
63 |
|
sl@0
|
64 |
#ifdef __cplusplus
|
sl@0
|
65 |
extern "C"
|
sl@0
|
66 |
{
|
sl@0
|
67 |
#endif
|
sl@0
|
68 |
extern CRYPTO_EX_DATA_IMPL temp_s_impl_default;
|
sl@0
|
69 |
extern BIO_METHOD temp_s_mem_method;
|
sl@0
|
70 |
extern BIO_METHOD temp_s_null_method;
|
sl@0
|
71 |
extern BIO_METHOD temp_s_methods_fdp;
|
sl@0
|
72 |
extern BIO_METHOD temp_s_methods_sockp;
|
sl@0
|
73 |
extern BIO_METHOD temp_s_methods_filep;
|
sl@0
|
74 |
extern BIO_METHOD temp_s_methods_dgramp;
|
sl@0
|
75 |
extern BIO_METHOD temp_s_methods_connectp;
|
sl@0
|
76 |
extern BIO_METHOD temp_s_methods_biop;
|
sl@0
|
77 |
extern BIO_METHOD temp_s_methods_acceptp;
|
sl@0
|
78 |
extern BIO_METHOD temp_s_methods_md;
|
sl@0
|
79 |
extern BIO_METHOD temp_s_methods_b64;
|
sl@0
|
80 |
extern BIO_METHOD temp_s_methods_enc;
|
sl@0
|
81 |
extern BIO_METHOD temp_s_methods_ok;
|
sl@0
|
82 |
extern COMP_METHOD temp_s_rle_method;
|
sl@0
|
83 |
extern COMP_METHOD temp_s_zlib_method_nozlib;
|
sl@0
|
84 |
extern COMP_METHOD temp_s_zlib_stateful_method;
|
sl@0
|
85 |
extern CONF_METHOD temp_s_default_method;
|
sl@0
|
86 |
extern CONF_METHOD temp_s_WIN32_method;
|
sl@0
|
87 |
extern DH_METHOD temp_s_dh_ossl;
|
sl@0
|
88 |
extern DSA_METHOD temp_s_openssl_dsa_meth;
|
sl@0
|
89 |
//extern DSO_METHOD temp_s_dso_meth_dl;
|
sl@0
|
90 |
extern DSO_METHOD temp_s_dso_meth_dlfcn;
|
sl@0
|
91 |
extern DSO_METHOD temp_s_dso_meth_null;
|
sl@0
|
92 |
extern RSA_METHOD temp_s_rsa_pkcs1_eay_meth;
|
sl@0
|
93 |
extern STORE_METHOD temp_s_store_memory;
|
sl@0
|
94 |
extern UI_METHOD temp_s_ui_openssl;
|
sl@0
|
95 |
extern X509V3_CONF_METHOD temp_s_nconf_method;
|
sl@0
|
96 |
extern X509V3_CONF_METHOD temp_s_conf_lhash_method;
|
sl@0
|
97 |
extern ASN1_METHOD temp_s_meth;
|
sl@0
|
98 |
extern ASN1_METHOD temp_s_method;
|
sl@0
|
99 |
extern RAND_METHOD temp_g_rand_ssleay_meth;
|
sl@0
|
100 |
extern X509_LOOKUP_METHOD temp_g_x509_file_lookup;
|
sl@0
|
101 |
extern X509_LOOKUP_METHOD temp_g_x509_dir_lookup;
|
sl@0
|
102 |
|
sl@0
|
103 |
extern void *default_malloc_ex(size_t num, const char *file, int line);
|
sl@0
|
104 |
extern void *default_realloc_ex(void *str, size_t num,
|
sl@0
|
105 |
const char *file, int line);
|
sl@0
|
106 |
extern void *default_malloc_locked_ex(size_t num, const char *file, int line);
|
sl@0
|
107 |
|
sl@0
|
108 |
extern const ERR_STRING_DATA temp_ASN1_str_functs[108];
|
sl@0
|
109 |
extern const ERR_STRING_DATA temp_ASN1_str_reasons[99];
|
sl@0
|
110 |
extern const ERR_STRING_DATA temp_CRYPTO_str_functs[10];
|
sl@0
|
111 |
extern const ERR_STRING_DATA temp_CRYPTO_str_reasons[2];
|
sl@0
|
112 |
extern const ERR_STRING_DATA temp_BIO_str_functs[33];
|
sl@0
|
113 |
extern const ERR_STRING_DATA temp_BIO_str_reasons[30];
|
sl@0
|
114 |
extern const ERR_STRING_DATA temp_BN_str_functs[39];
|
sl@0
|
115 |
extern const ERR_STRING_DATA temp_BN_str_reasons[18];
|
sl@0
|
116 |
extern const ERR_STRING_DATA temp_BUF_str_functs[7];
|
sl@0
|
117 |
extern const ERR_STRING_DATA temp_BUF_str_reasons[1];
|
sl@0
|
118 |
extern const ERR_STRING_DATA temp_COMP_str_functs[1];
|
sl@0
|
119 |
extern const ERR_STRING_DATA temp_COMP_str_reasons[1];
|
sl@0
|
120 |
extern const ERR_STRING_DATA temp_CONF_str_functs[22];
|
sl@0
|
121 |
extern const ERR_STRING_DATA temp_CONF_str_reasons[16];
|
sl@0
|
122 |
extern const ERR_STRING_DATA temp_DH_str_functs[8];
|
sl@0
|
123 |
extern const ERR_STRING_DATA temp_DH_str_reasons[5];
|
sl@0
|
124 |
extern const ERR_STRING_DATA temp_DSA_str_functs[15];
|
sl@0
|
125 |
extern const ERR_STRING_DATA temp_DSA_str_reasons[5];
|
sl@0
|
126 |
extern const ERR_STRING_DATA temp_DSO_str_functs[38];
|
sl@0
|
127 |
extern const ERR_STRING_DATA temp_DSO_str_reasons[18];
|
sl@0
|
128 |
extern const ERR_STRING_DATA temp_ENGINE_str_functs[37];
|
sl@0
|
129 |
extern const ERR_STRING_DATA temp_ENGINE_str_reasons[40];
|
sl@0
|
130 |
extern const ERR_STRING_DATA temp_ERR_str_libraries[25];
|
sl@0
|
131 |
extern const ERR_STRING_DATA temp_ERR_str_functs[11];
|
sl@0
|
132 |
extern const ERR_STRING_DATA temp_ERR_str_reasons[36];
|
sl@0
|
133 |
extern const ERR_STRING_DATA temp_EVP_str_functs[36];
|
sl@0
|
134 |
extern const ERR_STRING_DATA temp_EVP_str_reasons[45];
|
sl@0
|
135 |
extern const ERR_STRING_DATA temp_OBJ_str_functs[8];
|
sl@0
|
136 |
extern const ERR_STRING_DATA temp_OBJ_str_reasons[3];
|
sl@0
|
137 |
extern const ERR_STRING_DATA temp_OCSP_str_functs[18];
|
sl@0
|
138 |
extern const ERR_STRING_DATA temp_OCSP_str_reasons[31];
|
sl@0
|
139 |
extern const ERR_STRING_DATA temp_PEM_str_functs[27];
|
sl@0
|
140 |
extern const ERR_STRING_DATA temp_PEM_str_reasons[17];
|
sl@0
|
141 |
extern const ERR_STRING_DATA temp_PKCS7_str_functs[29];
|
sl@0
|
142 |
extern const ERR_STRING_DATA temp_PKCS7_str_reasons[47];
|
sl@0
|
143 |
extern const ERR_STRING_DATA temp_PKCS12_str_functs[30];
|
sl@0
|
144 |
extern const ERR_STRING_DATA temp_PKCS12_str_reasons[23];
|
sl@0
|
145 |
extern const ERR_STRING_DATA temp_RAND_str_functs[3];
|
sl@0
|
146 |
extern const ERR_STRING_DATA temp_RAND_str_reasons[2];
|
sl@0
|
147 |
extern const ERR_STRING_DATA temp_RSA_str_functs[38];
|
sl@0
|
148 |
extern const ERR_STRING_DATA temp_RSA_str_reasons[42];
|
sl@0
|
149 |
extern const ERR_STRING_DATA temp_UI_str_functs[13];
|
sl@0
|
150 |
extern const ERR_STRING_DATA temp_UI_str_reasons[8];
|
sl@0
|
151 |
extern const ERR_STRING_DATA temp_X509_str_functs[46];
|
sl@0
|
152 |
extern const ERR_STRING_DATA temp_X509_str_reasons[24];
|
sl@0
|
153 |
extern const ERR_STRING_DATA temp_X509V3_str_functs[57];
|
sl@0
|
154 |
extern const ERR_STRING_DATA temp_X509V3_str_reasons[61];
|
sl@0
|
155 |
extern const DES_cblock temp_weak_keys[16];
|
sl@0
|
156 |
extern const ASN1_METHOD temp_ia5string_meth;
|
sl@0
|
157 |
extern const ASN1_METHOD temp_bit_string_meth;
|
sl@0
|
158 |
#ifdef __cplusplus
|
sl@0
|
159 |
}
|
sl@0
|
160 |
#endif
|
sl@0
|
161 |
|
sl@0
|
162 |
|
sl@0
|
163 |
libcrypto_global_struct *libcrypto_ImpurePtr()
|
sl@0
|
164 |
{
|
sl@0
|
165 |
/*struct libcrypto_global_struct *g = (struct libcrypto_global_struct *)Pls();
|
sl@0
|
166 |
|
sl@0
|
167 |
if(g)
|
sl@0
|
168 |
return g;
|
sl@0
|
169 |
|
sl@0
|
170 |
g = (struct libcrypto_global_struct *)
|
sl@0
|
171 |
AllocatePls(sizeof(struct libcrypto_global_struct));
|
sl@0
|
172 |
|
sl@0
|
173 |
//new (g) struct libcrypto_global_struct;
|
sl@0
|
174 |
|
sl@0
|
175 |
Mem::FillZ(g,sizeof(struct libcrypto_global_struct));
|
sl@0
|
176 |
libcrypto_Init(g);
|
sl@0
|
177 |
|
sl@0
|
178 |
TInt err = SetPls(g);
|
sl@0
|
179 |
|
sl@0
|
180 |
if(g == 0 || err)
|
sl@0
|
181 |
User::Panic(_L("LIBCRYPTO-INIT"),err);
|
sl@0
|
182 |
return g;*/
|
sl@0
|
183 |
libcrypto_global_struct *p = Pls<libcrypto_global_struct>(KLibdlUid3,libcrypto_Init);
|
sl@0
|
184 |
return p;
|
sl@0
|
185 |
}
|
sl@0
|
186 |
|
sl@0
|
187 |
int libcrypto_Init(libcrypto_global_struct *g)
|
sl@0
|
188 |
{
|
sl@0
|
189 |
if(g)
|
sl@0
|
190 |
{
|
sl@0
|
191 |
memcpy(&(g->GET_WSD_VAR_NAME(ia5string_meth,a_meth,s)),&temp_ia5string_meth,sizeof(ASN1_METHOD));
|
sl@0
|
192 |
memcpy(&(g->GET_WSD_VAR_NAME(bit_string_meth,a_meth,s)),&temp_bit_string_meth,sizeof(ASN1_METHOD));
|
sl@0
|
193 |
|
sl@0
|
194 |
g->GET_WSD_VAR_NAME(stable,a_strnid,s)= NULL;
|
sl@0
|
195 |
g->GET_WSD_VAR_NAME(global_mask,a_strnid,s)=0xFFFFFFFFL;
|
sl@0
|
196 |
g->GET_WSD_VAR_NAME(app_locks,cryptlib,s)=NULL;
|
sl@0
|
197 |
g->GET_WSD_VAR_NAME(dyn_locks,cryptlib,s)=NULL;
|
sl@0
|
198 |
g->GET_WSD_VAR_NAME(allow_customize,mem,s)=1;
|
sl@0
|
199 |
g->GET_WSD_VAR_NAME(allow_customize_debug,mem,s)=1;
|
sl@0
|
200 |
g->GET_WSD_VAR_NAME(mh_mode,mem_dbg,s)=0x0;
|
sl@0
|
201 |
g->GET_WSD_VAR_NAME(order,mem_dbg,s)=0x0;
|
sl@0
|
202 |
g->GET_WSD_VAR_NAME(mh,mem_dbg,s)= NULL;
|
sl@0
|
203 |
g->GET_WSD_VAR_NAME(amih,mem_dbg,s)=NULL;
|
sl@0
|
204 |
g->GET_WSD_VAR_NAME(options,mem_dbg,s)=
|
sl@0
|
205 |
#if defined(CRYPTO_MDEBUG_TIME) || defined(CRYPTO_MDEBUG_ALL)
|
sl@0
|
206 |
V_CRYPTO_MDEBUG_TIME |
|
sl@0
|
207 |
#endif
|
sl@0
|
208 |
#if defined(CRYPTO_MDEBUG_THREAD) || defined(CRYPTO_MDEBUG_ALL)
|
sl@0
|
209 |
V_CRYPTO_MDEBUG_THREAD |
|
sl@0
|
210 |
#endif
|
sl@0
|
211 |
0;
|
sl@0
|
212 |
g->GET_WSD_VAR_NAME(num_disable,mem_dbg,s)=0;
|
sl@0
|
213 |
g->GET_WSD_VAR_NAME(disabling_thread,mem_dbg,s)=0;
|
sl@0
|
214 |
g->GET_WSD_VAR_NAME(impl,ex_data,s)=NULL;
|
sl@0
|
215 |
g->GET_WSD_VAR_NAME(ex_class,ex_data,s)=CRYPTO_EX_INDEX_USER;
|
sl@0
|
216 |
g->GET_WSD_VAR_NAME(ex_data,ex_data,s)=NULL;
|
sl@0
|
217 |
|
sl@0
|
218 |
|
sl@0
|
219 |
|
sl@0
|
220 |
g->GET_WSD_VAR_NAME(init,bn_lib,s) = 0;
|
sl@0
|
221 |
|
sl@0
|
222 |
g->GET_WSD_VAR_NAME(data_one,bn_lib,s)=1L;
|
sl@0
|
223 |
g->GET_WSD_VAR_NAME(const_one,bn_lib,s).d=&(g->GET_WSD_VAR_NAME(data_one,bn_lib,s));
|
sl@0
|
224 |
g->GET_WSD_VAR_NAME(const_one,bn_lib,s).top = 1;
|
sl@0
|
225 |
g->GET_WSD_VAR_NAME(const_one,bn_lib,s).dmax = 1;
|
sl@0
|
226 |
g->GET_WSD_VAR_NAME(const_one,bn_lib,s).neg = 0;
|
sl@0
|
227 |
g->GET_WSD_VAR_NAME(const_one,bn_lib,s).flags = BN_FLG_STATIC_DATA;
|
sl@0
|
228 |
g->GET_WSD_VAR_NAME(_is_set_256_data,bn_nist,s)=0;
|
sl@0
|
229 |
g->GET_WSD_VAR_NAME(_is_set_384_data,bn_nist,s)=0;
|
sl@0
|
230 |
g->GET_WSD_VAR_NAME(zlib_stateful_ex_idx,c_zlib,s)=-1;
|
sl@0
|
231 |
g->GET_WSD_VAR_NAME(p_compress,c_zlib,s) = NULL;
|
sl@0
|
232 |
g->GET_WSD_VAR_NAME(p_inflateEnd,c_zlib,s) = NULL;
|
sl@0
|
233 |
g->GET_WSD_VAR_NAME(p_inflate,c_zlib,s) = NULL;
|
sl@0
|
234 |
g->GET_WSD_VAR_NAME(p_inflateInit_,c_zlib,s) = NULL;
|
sl@0
|
235 |
g->GET_WSD_VAR_NAME(p_deflateEnd,c_zlib,s)=NULL;
|
sl@0
|
236 |
g->GET_WSD_VAR_NAME(p_deflate,c_zlib,s)=NULL;
|
sl@0
|
237 |
g->GET_WSD_VAR_NAME(p_deflateInit_,c_zlib,s)=NULL;
|
sl@0
|
238 |
g->GET_WSD_VAR_NAME(zlib_loaded ,c_zlib,s)=0;
|
sl@0
|
239 |
g->GET_WSD_VAR_NAME(zlib_dso ,c_zlib,s)=NULL;
|
sl@0
|
240 |
g->GET_WSD_VAR_NAME(supported_modules,conf_mod,s)=NULL;
|
sl@0
|
241 |
g->GET_WSD_VAR_NAME(initialized_modules,conf_mod,s)=NULL;
|
sl@0
|
242 |
g->GET_WSD_VAR_NAME(openssl_configured,conf_sap,s)=0;
|
sl@0
|
243 |
g->GET_WSD_VAR_NAME(init,ecb_enc,s)=1;
|
sl@0
|
244 |
|
sl@0
|
245 |
memset(&(g->GET_WSD_VAR_NAME(buf,ecb_enc,s)),0,32);
|
sl@0
|
246 |
|
sl@0
|
247 |
g->GET_WSD_VAR_NAME(net,enc_read,s)=NULL;
|
sl@0
|
248 |
g->GET_WSD_VAR_NAME(unnet,enc_read,s)=NULL;
|
sl@0
|
249 |
g->GET_WSD_VAR_NAME(unnet_start,enc_read,s)=0;
|
sl@0
|
250 |
g->GET_WSD_VAR_NAME(unnet_left,enc_read,s)=0;
|
sl@0
|
251 |
g->GET_WSD_VAR_NAME(tmpbuf,enc_read,s)=NULL;
|
sl@0
|
252 |
g->GET_WSD_VAR_NAME(outbuf,enc_write,s)=NULL;
|
sl@0
|
253 |
g->GET_WSD_VAR_NAME(start,enc_write,s)=1;
|
sl@0
|
254 |
|
sl@0
|
255 |
memcpy(&(g->GET_WSD_VAR_NAME(weak_keys,set_key_c,s)),&temp_weak_keys,16);
|
sl@0
|
256 |
|
sl@0
|
257 |
g->GET_WSD_VAR_NAME(cleanup_stack,eng_lib,s)= NULL;
|
sl@0
|
258 |
g->GET_WSD_VAR_NAME(internal_static_hack,eng_lib,s)=0;
|
sl@0
|
259 |
g->GET_WSD_VAR_NAME(engine_list_head,eng_list,s)=NULL;
|
sl@0
|
260 |
g->GET_WSD_VAR_NAME(engine_list_tail,eng_list,s)=NULL;
|
sl@0
|
261 |
g->GET_WSD_VAR_NAME(table_flags,eng_table,s)=0;
|
sl@0
|
262 |
g->GET_WSD_VAR_NAME(rsa_table,tb_rsa,s)=NULL;
|
sl@0
|
263 |
g->GET_WSD_VAR_NAME(dsa_table,tb_dsa,s)=NULL;
|
sl@0
|
264 |
g->GET_WSD_VAR_NAME(ecdh_table,tb_ecdh,s)=NULL;
|
sl@0
|
265 |
g->GET_WSD_VAR_NAME(ecdsa_table,tb_ecdsa,s)=NULL;
|
sl@0
|
266 |
g->GET_WSD_VAR_NAME(rand_table,tb_rand,s)=NULL;
|
sl@0
|
267 |
g->GET_WSD_VAR_NAME(digest_table,tb_digest,s)=NULL;
|
sl@0
|
268 |
g->GET_WSD_VAR_NAME(store_table,tb_store,s)=NULL;
|
sl@0
|
269 |
g->GET_WSD_VAR_NAME(dh_table,tb_dh,s)=NULL;
|
sl@0
|
270 |
g->GET_WSD_VAR_NAME(cipher_table,tb_cipher,s)=NULL;
|
sl@0
|
271 |
|
sl@0
|
272 |
g->GET_WSD_VAR_NAME(initialized_engines,eng_cnf,s)=NULL;
|
sl@0
|
273 |
g->GET_WSD_VAR_NAME(dynamic_ex_data_idx,eng_dyn,s)= -1;
|
sl@0
|
274 |
g->GET_WSD_VAR_NAME(err_fns,err,s)=NULL;
|
sl@0
|
275 |
g->GET_WSD_VAR_NAME(pbe_algs,evp_pbe,s)=NULL;
|
sl@0
|
276 |
g->GET_WSD_VAR_NAME(int_error_hash,err,s)=NULL;
|
sl@0
|
277 |
g->GET_WSD_VAR_NAME(int_thread_hash,err,s)=NULL;
|
sl@0
|
278 |
g->GET_WSD_VAR_NAME(int_thread_hash_references,err,s)=0;
|
sl@0
|
279 |
g->GET_WSD_VAR_NAME(int_err_library_number,err,s)=ERR_LIB_USER;
|
sl@0
|
280 |
g->GET_WSD_VAR_NAME(init,err,s)=1;
|
sl@0
|
281 |
|
sl@0
|
282 |
g->GET_WSD_VAR_NAME(names_lh,o_names,s)=NULL;
|
sl@0
|
283 |
g->GET_WSD_VAR_NAME(names_type_num,o_names,s)=OBJ_NAME_TYPE_NUM;
|
sl@0
|
284 |
g->GET_WSD_VAR_NAME(name_funcs_stack,o_names,s)=NULL;
|
sl@0
|
285 |
g->GET_WSD_VAR_NAME(free_type,o_names,s)=0;
|
sl@0
|
286 |
g->GET_WSD_VAR_NAME(new_nid,obj_dat,s)=NUM_NID;
|
sl@0
|
287 |
g->GET_WSD_VAR_NAME(added,obj_dat,s)=NULL;
|
sl@0
|
288 |
|
sl@0
|
289 |
g->GET_WSD_VAR_NAME(state_num,md_rand,s)=0;
|
sl@0
|
290 |
g->GET_WSD_VAR_NAME(state_index,md_rand,s)=0;
|
sl@0
|
291 |
memset(&(g->GET_WSD_VAR_NAME(state,md_rand,s)),0,1023+MD_DIGEST_LENGTH);
|
sl@0
|
292 |
memset(&(g->GET_WSD_VAR_NAME(md,md_rand,s)),0,MD_DIGEST_LENGTH);
|
sl@0
|
293 |
g->GET_WSD_VAR_NAME(md_count,md_rand,s)[0]=0;
|
sl@0
|
294 |
g->GET_WSD_VAR_NAME(md_count,md_rand,s)[1]=0;
|
sl@0
|
295 |
g->GET_WSD_VAR_NAME(entropy,md_rand,s)=0;
|
sl@0
|
296 |
g->GET_WSD_VAR_NAME(initialized,md_rand,s)=0;
|
sl@0
|
297 |
g->GET_WSD_VAR_NAME(crypto_lock_rand,md_rand,s)=0;
|
sl@0
|
298 |
g->GET_WSD_VAR_NAME(locking_thread,md_rand,s)=0;
|
sl@0
|
299 |
g->GET_WSD_VAR_NAME(default_RAND_meth,rand_lib,s)=NULL;
|
sl@0
|
300 |
|
sl@0
|
301 |
g->GET_WSD_VAR_NAME(tty_in,ui_openssl,s)=NULL;
|
sl@0
|
302 |
g->GET_WSD_VAR_NAME(tty_out,ui_openssl,s)=NULL;
|
sl@0
|
303 |
g->GET_WSD_VAR_NAME(is_a_tty,ui_openssl,s)=0;
|
sl@0
|
304 |
g->GET_WSD_VAR_NAME(ext_nid_list,x509_req,s)[0]= NID_ext_req;
|
sl@0
|
305 |
g->GET_WSD_VAR_NAME(ext_nid_list,x509_req,s)[1]= NID_ms_ext_req,
|
sl@0
|
306 |
g->GET_WSD_VAR_NAME(ext_nid_list,x509_req,s)[2]= NID_undef;
|
sl@0
|
307 |
g->GET_WSD_VAR_NAME(ext_nids,x509_req,s)=(int *)&(g->GET_WSD_VAR_NAME(ext_nid_list,x509_req,s));
|
sl@0
|
308 |
|
sl@0
|
309 |
g->GET_WSD_VAR_NAME(trtable,x509_trs,s)=NULL;
|
sl@0
|
310 |
g->GET_WSD_VAR_NAME(param_table,x509_vpm,s)=NULL;
|
sl@0
|
311 |
g->GET_WSD_VAR_NAME(ext_list,v3_lib,s)=NULL;
|
sl@0
|
312 |
g->GET_WSD_VAR_NAME(xptable,v3_purp,s)=NULL;
|
sl@0
|
313 |
|
sl@0
|
314 |
g->GET_WSD_VAR_NAME(default_CONF_method,conf_lib,s)=NULL;
|
sl@0
|
315 |
g->GET_WSD_VAR_NAME(default_DH_method,dh_lib,s)=NULL;
|
sl@0
|
316 |
g->GET_WSD_VAR_NAME(default_DSA_method,dsa_lib,s)=NULL;
|
sl@0
|
317 |
g->GET_WSD_VAR_NAME(default_DSO_meth,dso_lib,s)=NULL;
|
sl@0
|
318 |
g->GET_WSD_VAR_NAME(default_RSA_meth,rsa_lib,s)=NULL;
|
sl@0
|
319 |
g->GET_WSD_VAR_NAME(default_UI_meth,ui_lib,s)=NULL;
|
sl@0
|
320 |
g->GET_WSD_VAR_NAME(stirred_pool,md_rand,s)=0;
|
sl@0
|
321 |
|
sl@0
|
322 |
g->malloc_func=malloc;
|
sl@0
|
323 |
g->malloc_ex_func=default_malloc_ex;
|
sl@0
|
324 |
g->realloc_func=realloc;
|
sl@0
|
325 |
g->realloc_ex_func=default_realloc_ex;
|
sl@0
|
326 |
g->free_func_openssl= free;
|
sl@0
|
327 |
g->malloc_locked_func= malloc;
|
sl@0
|
328 |
g->malloc_locked_ex_func= default_malloc_locked_ex;
|
sl@0
|
329 |
g->free_locked_func= free;
|
sl@0
|
330 |
|
sl@0
|
331 |
#ifdef CRYPTO_MDEBUG
|
sl@0
|
332 |
g->malloc_debug_func=CRYPTO_dbg_malloc;
|
sl@0
|
333 |
g->realloc_debug_func=CRYPTO_dbg_realloc;
|
sl@0
|
334 |
g->free_debug_func=CRYPTO_dbg_free;
|
sl@0
|
335 |
g->set_debug_options_func=CRYPTO_dbg_set_options;
|
sl@0
|
336 |
g->get_debug_options_func=CRYPTO_dbg_get_options;
|
sl@0
|
337 |
#else
|
sl@0
|
338 |
g->malloc_debug_func=NULL;
|
sl@0
|
339 |
g->realloc_debug_func=NULL;
|
sl@0
|
340 |
g->free_debug_func=NULL;
|
sl@0
|
341 |
g->set_debug_options_func=NULL;
|
sl@0
|
342 |
g->get_debug_options_func=NULL;
|
sl@0
|
343 |
#endif
|
sl@0
|
344 |
g->locking_callback=NULL;
|
sl@0
|
345 |
g->add_lock_callback=NULL;
|
sl@0
|
346 |
g->id_callback=NULL;
|
sl@0
|
347 |
g->dynlock_create_callback=NULL;
|
sl@0
|
348 |
g->dynlock_lock_callback=NULL;
|
sl@0
|
349 |
g->dynlock_destroy_callback=NULL;
|
sl@0
|
350 |
g->_shadow_DES_rw_mode=DES_PCBC_MODE;
|
sl@0
|
351 |
g->_shadow_DES_check_key=0;
|
sl@0
|
352 |
|
sl@0
|
353 |
memset(&(g->GET_WSD_VAR_NAME(data,bn_lib,s)),0,16);
|
sl@0
|
354 |
memset(&(g->GET_WSD_VAR_NAME(buff,fcrypt,s)),0,14);
|
sl@0
|
355 |
memset(&(g->GET_WSD_VAR_NAME(buf,err,s)),0,256);
|
sl@0
|
356 |
memset(&(g->GET_WSD_VAR_NAME(fallback,err,s)),0,sizeof(ERR_STATE));
|
sl@0
|
357 |
memset(&(g->GET_WSD_VAR_NAME(SYS_str_reasons,err,s)),0,128*sizeof(ERR_STRING_DATA));
|
sl@0
|
358 |
memset(&(g->GET_WSD_VAR_NAME(prompt_string,evp_key,s)),0,80);
|
sl@0
|
359 |
|
sl@0
|
360 |
memset(&(g->GET_WSD_VAR_NAME(m,hmac,s)),0,EVP_MAX_MD_SIZE);
|
sl@0
|
361 |
memset(&(g->GET_WSD_VAR_NAME(m,md2,s)),0,EVP_MAX_MD_SIZE);
|
sl@0
|
362 |
memset(&(g->GET_WSD_VAR_NAME(m,md5,s)),0,EVP_MAX_MD_SIZE);
|
sl@0
|
363 |
memset(&(g->GET_WSD_VAR_NAME(m,sha1_one,s)),0,SHA_DIGEST_LENGTH);
|
sl@0
|
364 |
memset(&(g->GET_WSD_VAR_NAME(m,sha_one,s)),0,SHA_DIGEST_LENGTH);
|
sl@0
|
365 |
|
sl@0
|
366 |
memset(&(g->GET_WSD_VAR_NAME(buf,x509_txt,s)),0,100);
|
sl@0
|
367 |
|
sl@0
|
368 |
memcpy(&(g->GET_WSD_VAR_NAME(ASN1_str_functs,asn1_err,s)),&temp_ASN1_str_functs,108*sizeof(ERR_STRING_DATA));
|
sl@0
|
369 |
memcpy(&(g->GET_WSD_VAR_NAME(ASN1_str_reasons,asn1_err,s)),&temp_ASN1_str_reasons,99*sizeof(ERR_STRING_DATA));
|
sl@0
|
370 |
memcpy(&(g->GET_WSD_VAR_NAME(CRYPTO_str_functs,cpt_err,s)),&temp_CRYPTO_str_functs,10*sizeof(ERR_STRING_DATA));
|
sl@0
|
371 |
memcpy(&(g->GET_WSD_VAR_NAME(CRYPTO_str_reasons,cpt_err,s)),&temp_CRYPTO_str_reasons,2*sizeof(ERR_STRING_DATA));
|
sl@0
|
372 |
memcpy(&(g->GET_WSD_VAR_NAME(BIO_str_functs,bio_err,s)),&temp_BIO_str_functs,33*sizeof(ERR_STRING_DATA));
|
sl@0
|
373 |
memcpy(&(g->GET_WSD_VAR_NAME(BIO_str_reasons,bio_err,s)),&temp_BIO_str_reasons,30*sizeof(ERR_STRING_DATA));
|
sl@0
|
374 |
memcpy(&(g->GET_WSD_VAR_NAME(BN_str_functs,bn_err,s)),&temp_BN_str_functs,39*sizeof(ERR_STRING_DATA));
|
sl@0
|
375 |
memcpy(&(g->GET_WSD_VAR_NAME(BN_str_reasons,bn_err,s)),&temp_BN_str_reasons,19*sizeof(ERR_STRING_DATA));
|
sl@0
|
376 |
memcpy(&(g->GET_WSD_VAR_NAME(BUF_str_functs,buf_err,s)),&temp_BUF_str_functs,7*sizeof(ERR_STRING_DATA));
|
sl@0
|
377 |
memcpy(&(g->GET_WSD_VAR_NAME(BUF_str_reasons,buf_err,s)),&temp_BUF_str_reasons,1*sizeof(ERR_STRING_DATA));
|
sl@0
|
378 |
memcpy(&(g->GET_WSD_VAR_NAME(COMP_str_functs,comp_err,s)),&temp_COMP_str_functs,sizeof(ERR_STRING_DATA));
|
sl@0
|
379 |
memcpy(&(g->GET_WSD_VAR_NAME(COMP_str_reasons,comp_err,s)),&temp_COMP_str_reasons,sizeof(ERR_STRING_DATA));
|
sl@0
|
380 |
memcpy(&(g->GET_WSD_VAR_NAME(CONF_str_functs,conf_err,s)),&temp_CONF_str_functs,22*sizeof(ERR_STRING_DATA));
|
sl@0
|
381 |
memcpy(&(g->GET_WSD_VAR_NAME(CONF_str_reasons,conf_err,s)),&temp_CONF_str_reasons,16*sizeof(ERR_STRING_DATA));
|
sl@0
|
382 |
memcpy(&(g->GET_WSD_VAR_NAME(DH_str_functs,dh_err,s)),&temp_DH_str_functs,8*sizeof(ERR_STRING_DATA));
|
sl@0
|
383 |
memcpy(&(g->GET_WSD_VAR_NAME(DH_str_reasons,dh_err,s)),&temp_DH_str_reasons,5*sizeof(ERR_STRING_DATA));
|
sl@0
|
384 |
memcpy(&(g->GET_WSD_VAR_NAME(DSA_str_functs,dsa_err,s)),&temp_DSA_str_functs,15*sizeof(ERR_STRING_DATA));
|
sl@0
|
385 |
memcpy(&(g->GET_WSD_VAR_NAME(DSA_str_reasons,dsa_err,s)),&temp_DSA_str_reasons,5*sizeof(ERR_STRING_DATA));
|
sl@0
|
386 |
memcpy(&(g->GET_WSD_VAR_NAME(DSO_str_functs,dso_err,s)),&temp_DSO_str_functs,38*sizeof(ERR_STRING_DATA));
|
sl@0
|
387 |
memcpy(&(g->GET_WSD_VAR_NAME(DSO_str_reasons,dso_err,s)),&temp_DSO_str_reasons,18*sizeof(ERR_STRING_DATA));
|
sl@0
|
388 |
memcpy(&(g->GET_WSD_VAR_NAME(ENGINE_str_functs,eng_err,s)),&temp_ENGINE_str_functs,37*sizeof(ERR_STRING_DATA));
|
sl@0
|
389 |
memcpy(&(g->GET_WSD_VAR_NAME(ENGINE_str_reasons,eng_err,s)),&temp_ENGINE_str_reasons,40*sizeof(ERR_STRING_DATA));
|
sl@0
|
390 |
memcpy(&(g->GET_WSD_VAR_NAME(ERR_str_libraries,err_err,s)),&temp_ERR_str_libraries,25*sizeof(ERR_STRING_DATA));
|
sl@0
|
391 |
memcpy(&(g->GET_WSD_VAR_NAME(ERR_str_functs,err_err,s)),&temp_ERR_str_functs,11*sizeof(ERR_STRING_DATA));
|
sl@0
|
392 |
memcpy(&(g->GET_WSD_VAR_NAME(ERR_str_reasons,err_err,s)),&temp_ERR_str_reasons,36*sizeof(ERR_STRING_DATA));
|
sl@0
|
393 |
memcpy(&(g->GET_WSD_VAR_NAME(EVP_str_functs,evp_err,s)),&temp_EVP_str_functs,36*sizeof(ERR_STRING_DATA));
|
sl@0
|
394 |
memcpy(&(g->GET_WSD_VAR_NAME(EVP_str_reasons,evp_err,s)),&temp_EVP_str_reasons,45*sizeof(ERR_STRING_DATA));
|
sl@0
|
395 |
memcpy(&(g->GET_WSD_VAR_NAME(OBJ_str_functs,obj_err,s)),&temp_OBJ_str_functs,8*sizeof(ERR_STRING_DATA));
|
sl@0
|
396 |
memcpy(&(g->GET_WSD_VAR_NAME(OBJ_str_reasons,obj_err,s)),&temp_OBJ_str_reasons,3*sizeof(ERR_STRING_DATA));
|
sl@0
|
397 |
memcpy(&(g->GET_WSD_VAR_NAME(OCSP_str_functs,ocsp_err,s)),&temp_OCSP_str_functs,18*sizeof(ERR_STRING_DATA));
|
sl@0
|
398 |
memcpy(&(g->GET_WSD_VAR_NAME(OCSP_str_reasons,ocsp_err,s)),&temp_OCSP_str_reasons,31*sizeof(ERR_STRING_DATA));
|
sl@0
|
399 |
memcpy(&(g->GET_WSD_VAR_NAME(PEM_str_functs,pem_err,s)),&temp_PEM_str_functs,27*sizeof(ERR_STRING_DATA));
|
sl@0
|
400 |
memcpy(&(g->GET_WSD_VAR_NAME(PEM_str_reasons,pem_err,s)),&temp_PEM_str_reasons,17*sizeof(ERR_STRING_DATA));
|
sl@0
|
401 |
memcpy(&(g->GET_WSD_VAR_NAME(PKCS7_str_functs,pkcs7_err,s)),&temp_PKCS7_str_functs,29*sizeof(ERR_STRING_DATA));
|
sl@0
|
402 |
memcpy(&(g->GET_WSD_VAR_NAME(PKCS7_str_reasons,pkcs7_err,s)),&temp_PKCS7_str_reasons,47*sizeof(ERR_STRING_DATA));
|
sl@0
|
403 |
memcpy(&(g->GET_WSD_VAR_NAME(PKCS12_str_functs,pkcs12_err,s)),&temp_PKCS12_str_functs,30*sizeof(ERR_STRING_DATA));
|
sl@0
|
404 |
memcpy(&(g->GET_WSD_VAR_NAME(PKCS12_str_reasons,pkcs12_err,s)),&temp_PKCS12_str_reasons,23*sizeof(ERR_STRING_DATA));
|
sl@0
|
405 |
memcpy(&(g->GET_WSD_VAR_NAME(RAND_str_functs,rand_err,s)),&temp_RAND_str_functs,3*sizeof(ERR_STRING_DATA));
|
sl@0
|
406 |
memcpy(&(g->GET_WSD_VAR_NAME(RAND_str_reasons,rand_err,s)),&temp_RAND_str_reasons,2*sizeof(ERR_STRING_DATA));
|
sl@0
|
407 |
memcpy(&(g->GET_WSD_VAR_NAME(RSA_str_functs,rsa_err,s)),&temp_RSA_str_functs,38*sizeof(ERR_STRING_DATA));
|
sl@0
|
408 |
memcpy(&(g->GET_WSD_VAR_NAME(RSA_str_reasons,rsa_err,s)),&temp_RSA_str_reasons,42*sizeof(ERR_STRING_DATA));
|
sl@0
|
409 |
memcpy(&(g->GET_WSD_VAR_NAME(UI_str_functs,ui_err,s)),&temp_UI_str_functs,13*sizeof(ERR_STRING_DATA));
|
sl@0
|
410 |
memcpy(&(g->GET_WSD_VAR_NAME(UI_str_reasons,ui_err,s)),&temp_UI_str_reasons,8*sizeof(ERR_STRING_DATA));
|
sl@0
|
411 |
memcpy(&(g->GET_WSD_VAR_NAME(X509_str_functs,x509_err,s)),&temp_X509_str_functs,46*sizeof(ERR_STRING_DATA));
|
sl@0
|
412 |
memcpy(&(g->GET_WSD_VAR_NAME(X509_str_reasons,x509_err,s)),&temp_X509_str_reasons,24*sizeof(ERR_STRING_DATA));
|
sl@0
|
413 |
memcpy(&(g->GET_WSD_VAR_NAME(X509V3_str_functs,x509v3_err,s)),&temp_X509V3_str_functs,57*sizeof(ERR_STRING_DATA));
|
sl@0
|
414 |
memcpy(&(g->GET_WSD_VAR_NAME(X509V3_str_reasons,x509v3_err,s)),&temp_X509V3_str_reasons,61*sizeof(ERR_STRING_DATA));
|
sl@0
|
415 |
|
sl@0
|
416 |
|
sl@0
|
417 |
|
sl@0
|
418 |
/*START - static funcs*/
|
sl@0
|
419 |
memcpy(&(g->GET_WSD_VAR_NAME(impl_default,ex_data,s)),&temp_s_impl_default,sizeof(CRYPTO_EX_DATA_IMPL));
|
sl@0
|
420 |
memcpy(&(g->GET_WSD_VAR_NAME(mem_method,bss_mem,s)),&temp_s_mem_method,sizeof(BIO_METHOD));
|
sl@0
|
421 |
memcpy(&(g->GET_WSD_VAR_NAME(null_method,bss_null,s)),&temp_s_null_method,sizeof(BIO_METHOD));
|
sl@0
|
422 |
memcpy(&(g->GET_WSD_VAR_NAME(methods_fdp,bss_fd,s)),&temp_s_methods_fdp,sizeof(BIO_METHOD));
|
sl@0
|
423 |
memcpy(&(g->GET_WSD_VAR_NAME(methods_sockp,bss_sock,s)),&temp_s_methods_sockp,sizeof(BIO_METHOD));
|
sl@0
|
424 |
memcpy(&(g->GET_WSD_VAR_NAME(methods_filep,bss_file,s)),&temp_s_methods_filep,sizeof(BIO_METHOD));
|
sl@0
|
425 |
memcpy(&(g->GET_WSD_VAR_NAME(methods_dgramp,bss_dgram,s)),&temp_s_methods_dgramp,sizeof(BIO_METHOD));
|
sl@0
|
426 |
memcpy(&(g->GET_WSD_VAR_NAME(methods_connectp,bss_conn,s)),&temp_s_methods_connectp,sizeof(BIO_METHOD));
|
sl@0
|
427 |
memcpy(&(g->GET_WSD_VAR_NAME(methods_biop,bss_bio,s)),&temp_s_methods_biop,sizeof(BIO_METHOD));
|
sl@0
|
428 |
memcpy(&(g->GET_WSD_VAR_NAME(methods_acceptp,bss_acpt,s)),&temp_s_methods_acceptp,sizeof(BIO_METHOD));
|
sl@0
|
429 |
|
sl@0
|
430 |
|
sl@0
|
431 |
memcpy(&(g->GET_WSD_VAR_NAME(default_method,conf_def,s)),&temp_s_default_method,sizeof(CONF_METHOD));
|
sl@0
|
432 |
memcpy(&(g->GET_WSD_VAR_NAME(WIN32_method,conf_def,s)),&temp_s_WIN32_method,sizeof(CONF_METHOD));
|
sl@0
|
433 |
|
sl@0
|
434 |
memcpy(&(g->GET_WSD_VAR_NAME(rle_method,c_rle,s)),&temp_s_rle_method,sizeof(COMP_METHOD));
|
sl@0
|
435 |
memcpy(&(g->GET_WSD_VAR_NAME(zlib_method_nozlib,c_zlib,s)),&temp_s_zlib_method_nozlib,sizeof(COMP_METHOD));
|
sl@0
|
436 |
#ifdef ZLIB
|
sl@0
|
437 |
memcpy(&(g->GET_WSD_VAR_NAME(zlib_stateful_method,c_zlib,s)),&temp_s_zlib_stateful_method,sizeof(COMP_METHOD));
|
sl@0
|
438 |
#endif
|
sl@0
|
439 |
|
sl@0
|
440 |
|
sl@0
|
441 |
memcpy(&(g->GET_WSD_VAR_NAME(dh_ossl,dh_key,s)),&temp_s_dh_ossl,sizeof(DH_METHOD));
|
sl@0
|
442 |
memcpy(&(g->GET_WSD_VAR_NAME(openssl_dsa_meth,dsa_ossl,s)),&temp_s_openssl_dsa_meth,sizeof(DSA_METHOD));
|
sl@0
|
443 |
|
sl@0
|
444 |
//memcpy(&(g->GET_WSD_VAR_NAME(dso_meth_dl,dso_dl,s)),&temp_s_dso_meth_dl,sizeof(DSO_METHOD));
|
sl@0
|
445 |
memcpy(&(g->GET_WSD_VAR_NAME(dso_meth_dlfcn,dso_dlfcn,s)),&temp_s_dso_meth_dlfcn,sizeof(DSO_METHOD));
|
sl@0
|
446 |
memcpy(&(g->GET_WSD_VAR_NAME(dso_meth_null,dso_null,s)),&temp_s_dso_meth_null,sizeof(DSO_METHOD));
|
sl@0
|
447 |
|
sl@0
|
448 |
|
sl@0
|
449 |
memcpy(&(g->GET_WSD_VAR_NAME(methods_md,bio_md,s)),&temp_s_methods_md,sizeof(BIO_METHOD));
|
sl@0
|
450 |
memcpy(&(g->GET_WSD_VAR_NAME(methods_b64,bio_b64,s)),&temp_s_methods_b64,sizeof(BIO_METHOD));
|
sl@0
|
451 |
memcpy(&(g->GET_WSD_VAR_NAME(methods_enc,bio_enc,s)),&temp_s_methods_enc,sizeof(BIO_METHOD));
|
sl@0
|
452 |
memcpy(&(g->GET_WSD_VAR_NAME(methods_ok,bio_ok,s)),&temp_s_methods_ok,sizeof(BIO_METHOD));
|
sl@0
|
453 |
|
sl@0
|
454 |
memcpy(&(g->GET_WSD_VAR_NAME(rsa_pkcs1_eay_meth,rsa_eay,s)),&temp_s_rsa_pkcs1_eay_meth,sizeof(RSA_METHOD));
|
sl@0
|
455 |
|
sl@0
|
456 |
memcpy(&(g->GET_WSD_VAR_NAME(store_memory,str_mem,s)),&temp_s_store_memory,sizeof(STORE_METHOD));
|
sl@0
|
457 |
|
sl@0
|
458 |
memcpy(&(g->GET_WSD_VAR_NAME(ui_openssl,ui_openssl,s)),&temp_s_ui_openssl,sizeof(UI_METHOD));
|
sl@0
|
459 |
memcpy(&(g->GET_WSD_VAR_NAME(nconf_method,v3_conf,s)),&temp_s_nconf_method,sizeof(X509V3_CONF_METHOD));
|
sl@0
|
460 |
memcpy(&(g->GET_WSD_VAR_NAME(conf_lhash_method,v3_conf,s)),&temp_s_conf_lhash_method,sizeof(X509V3_CONF_METHOD));
|
sl@0
|
461 |
|
sl@0
|
462 |
memcpy(&(g->GET_WSD_VAR_NAME(meth,x_x509,s)),&temp_s_meth,sizeof(ASN1_METHOD));
|
sl@0
|
463 |
|
sl@0
|
464 |
memcpy(&(g->GET_WSD_VAR_NAME(method,rsa_asn1,s)),&temp_s_method,sizeof(ASN1_METHOD));
|
sl@0
|
465 |
|
sl@0
|
466 |
/*START -global vars*/
|
sl@0
|
467 |
g->GET_WSD_VAR_NAME(cleanse_ctr,mem_clr,g)=0;
|
sl@0
|
468 |
memcpy(&(g->GET_WSD_VAR_NAME(rand_ssleay_meth,md_rand,g)),&temp_g_rand_ssleay_meth,sizeof(RAND_METHOD));
|
sl@0
|
469 |
memcpy(&(g->GET_WSD_VAR_NAME(x509_file_lookup,by_file,g)),&temp_g_x509_file_lookup,sizeof(X509_LOOKUP_METHOD));
|
sl@0
|
470 |
memcpy(&(g->GET_WSD_VAR_NAME(x509_dir_lookup,by_dir,g)),&temp_g_x509_dir_lookup,sizeof(X509_LOOKUP_METHOD));
|
sl@0
|
471 |
|
sl@0
|
472 |
|
sl@0
|
473 |
|
sl@0
|
474 |
}
|
sl@0
|
475 |
return KErrNone;
|
sl@0
|
476 |
}
|
sl@0
|
477 |
|