1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ssl/libcrypto/src/crypto/symhacks.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,383 @@
1.4 +/* ====================================================================
1.5 + * Copyright (c) 1999 The OpenSSL Project. 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
1.9 + * are met:
1.10 + *
1.11 + * 1. Redistributions of source code must retain the above copyright
1.12 + * notice, this list of conditions and the following disclaimer.
1.13 + *
1.14 + * 2. Redistributions in binary form must reproduce the above copyright
1.15 + * notice, this list of conditions and the following disclaimer in
1.16 + * the documentation and/or other materials provided with the
1.17 + * distribution.
1.18 + *
1.19 + * 3. All advertising materials mentioning features or use of this
1.20 + * software must display the following acknowledgment:
1.21 + * "This product includes software developed by the OpenSSL Project
1.22 + * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
1.23 + *
1.24 + * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
1.25 + * endorse or promote products derived from this software without
1.26 + * prior written permission. For written permission, please contact
1.27 + * openssl-core@openssl.org.
1.28 + *
1.29 + * 5. Products derived from this software may not be called "OpenSSL"
1.30 + * nor may "OpenSSL" appear in their names without prior written
1.31 + * permission of the OpenSSL Project.
1.32 + *
1.33 + * 6. Redistributions of any form whatsoever must retain the following
1.34 + * acknowledgment:
1.35 + * "This product includes software developed by the OpenSSL Project
1.36 + * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
1.37 + *
1.38 + * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
1.39 + * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1.40 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
1.41 + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
1.42 + * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1.43 + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
1.44 + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1.45 + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1.46 + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
1.47 + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
1.48 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
1.49 + * OF THE POSSIBILITY OF SUCH DAMAGE.
1.50 + * ====================================================================
1.51 + *
1.52 + * This product includes cryptographic software written by Eric Young
1.53 + * (eay@cryptsoft.com). This product includes software written by Tim
1.54 + * Hudson (tjh@cryptsoft.com).
1.55 + *
1.56 + */
1.57 +
1.58 +#ifndef HEADER_SYMHACKS_H
1.59 +#define HEADER_SYMHACKS_H
1.60 +
1.61 +#include <openssl/e_os2.h>
1.62 +
1.63 +/* Hacks to solve the problem with linkers incapable of handling very long
1.64 + symbol names. In the case of VMS, the limit is 31 characters on VMS for
1.65 + VAX. */
1.66 +#ifdef OPENSSL_SYS_VMS
1.67 +
1.68 +/* Hack a long name in crypto/ex_data.c */
1.69 +#undef CRYPTO_get_ex_data_implementation
1.70 +#define CRYPTO_get_ex_data_implementation CRYPTO_get_ex_data_impl
1.71 +#undef CRYPTO_set_ex_data_implementation
1.72 +#define CRYPTO_set_ex_data_implementation CRYPTO_set_ex_data_impl
1.73 +
1.74 +/* Hack a long name in crypto/asn1/a_mbstr.c */
1.75 +#undef ASN1_STRING_set_default_mask_asc
1.76 +#define ASN1_STRING_set_default_mask_asc ASN1_STRING_set_def_mask_asc
1.77 +
1.78 +#if 0 /* No longer needed, since safestack macro magic does the job */
1.79 +/* Hack the names created with DECLARE_ASN1_SET_OF(PKCS7_SIGNER_INFO) */
1.80 +#undef i2d_ASN1_SET_OF_PKCS7_SIGNER_INFO
1.81 +#define i2d_ASN1_SET_OF_PKCS7_SIGNER_INFO i2d_ASN1_SET_OF_PKCS7_SIGINF
1.82 +#undef d2i_ASN1_SET_OF_PKCS7_SIGNER_INFO
1.83 +#define d2i_ASN1_SET_OF_PKCS7_SIGNER_INFO d2i_ASN1_SET_OF_PKCS7_SIGINF
1.84 +#endif
1.85 +
1.86 +#if 0 /* No longer needed, since safestack macro magic does the job */
1.87 +/* Hack the names created with DECLARE_ASN1_SET_OF(PKCS7_RECIP_INFO) */
1.88 +#undef i2d_ASN1_SET_OF_PKCS7_RECIP_INFO
1.89 +#define i2d_ASN1_SET_OF_PKCS7_RECIP_INFO i2d_ASN1_SET_OF_PKCS7_RECINF
1.90 +#undef d2i_ASN1_SET_OF_PKCS7_RECIP_INFO
1.91 +#define d2i_ASN1_SET_OF_PKCS7_RECIP_INFO d2i_ASN1_SET_OF_PKCS7_RECINF
1.92 +#endif
1.93 +
1.94 +#if 0 /* No longer needed, since safestack macro magic does the job */
1.95 +/* Hack the names created with DECLARE_ASN1_SET_OF(ACCESS_DESCRIPTION) */
1.96 +#undef i2d_ASN1_SET_OF_ACCESS_DESCRIPTION
1.97 +#define i2d_ASN1_SET_OF_ACCESS_DESCRIPTION i2d_ASN1_SET_OF_ACC_DESC
1.98 +#undef d2i_ASN1_SET_OF_ACCESS_DESCRIPTION
1.99 +#define d2i_ASN1_SET_OF_ACCESS_DESCRIPTION d2i_ASN1_SET_OF_ACC_DESC
1.100 +#endif
1.101 +
1.102 +/* Hack the names created with DECLARE_PEM_rw(NETSCAPE_CERT_SEQUENCE) */
1.103 +#undef PEM_read_NETSCAPE_CERT_SEQUENCE
1.104 +#define PEM_read_NETSCAPE_CERT_SEQUENCE PEM_read_NS_CERT_SEQ
1.105 +#undef PEM_write_NETSCAPE_CERT_SEQUENCE
1.106 +#define PEM_write_NETSCAPE_CERT_SEQUENCE PEM_write_NS_CERT_SEQ
1.107 +#undef PEM_read_bio_NETSCAPE_CERT_SEQUENCE
1.108 +#define PEM_read_bio_NETSCAPE_CERT_SEQUENCE PEM_read_bio_NS_CERT_SEQ
1.109 +#undef PEM_write_bio_NETSCAPE_CERT_SEQUENCE
1.110 +#define PEM_write_bio_NETSCAPE_CERT_SEQUENCE PEM_write_bio_NS_CERT_SEQ
1.111 +#undef PEM_write_cb_bio_NETSCAPE_CERT_SEQUENCE
1.112 +#define PEM_write_cb_bio_NETSCAPE_CERT_SEQUENCE PEM_write_cb_bio_NS_CERT_SEQ
1.113 +
1.114 +/* Hack the names created with DECLARE_PEM_rw(PKCS8_PRIV_KEY_INFO) */
1.115 +#undef PEM_read_PKCS8_PRIV_KEY_INFO
1.116 +#define PEM_read_PKCS8_PRIV_KEY_INFO PEM_read_P8_PRIV_KEY_INFO
1.117 +#undef PEM_write_PKCS8_PRIV_KEY_INFO
1.118 +#define PEM_write_PKCS8_PRIV_KEY_INFO PEM_write_P8_PRIV_KEY_INFO
1.119 +#undef PEM_read_bio_PKCS8_PRIV_KEY_INFO
1.120 +#define PEM_read_bio_PKCS8_PRIV_KEY_INFO PEM_read_bio_P8_PRIV_KEY_INFO
1.121 +#undef PEM_write_bio_PKCS8_PRIV_KEY_INFO
1.122 +#define PEM_write_bio_PKCS8_PRIV_KEY_INFO PEM_write_bio_P8_PRIV_KEY_INFO
1.123 +#undef PEM_write_cb_bio_PKCS8_PRIV_KEY_INFO
1.124 +#define PEM_write_cb_bio_PKCS8_PRIV_KEY_INFO PEM_wrt_cb_bio_P8_PRIV_KEY_INFO
1.125 +
1.126 +/* Hack other PEM names */
1.127 +#undef PEM_write_bio_PKCS8PrivateKey_nid
1.128 +#define PEM_write_bio_PKCS8PrivateKey_nid PEM_write_bio_PKCS8PrivKey_nid
1.129 +
1.130 +/* Hack some long X509 names */
1.131 +#undef X509_REVOKED_get_ext_by_critical
1.132 +#define X509_REVOKED_get_ext_by_critical X509_REVOKED_get_ext_by_critic
1.133 +#undef X509_policy_tree_get0_user_policies
1.134 +#define X509_policy_tree_get0_user_policies X509_pcy_tree_get0_usr_policies
1.135 +#undef X509_policy_node_get0_qualifiers
1.136 +#define X509_policy_node_get0_qualifiers X509_pcy_node_get0_qualifiers
1.137 +#undef X509_STORE_CTX_get_explicit_policy
1.138 +#define X509_STORE_CTX_get_explicit_policy X509_STORE_CTX_get_expl_policy
1.139 +
1.140 +/* Hack some long CRYPTO names */
1.141 +#undef CRYPTO_set_dynlock_destroy_callback
1.142 +#define CRYPTO_set_dynlock_destroy_callback CRYPTO_set_dynlock_destroy_cb
1.143 +#undef CRYPTO_set_dynlock_create_callback
1.144 +#define CRYPTO_set_dynlock_create_callback CRYPTO_set_dynlock_create_cb
1.145 +#undef CRYPTO_set_dynlock_lock_callback
1.146 +#define CRYPTO_set_dynlock_lock_callback CRYPTO_set_dynlock_lock_cb
1.147 +#undef CRYPTO_get_dynlock_lock_callback
1.148 +#define CRYPTO_get_dynlock_lock_callback CRYPTO_get_dynlock_lock_cb
1.149 +#undef CRYPTO_get_dynlock_destroy_callback
1.150 +#define CRYPTO_get_dynlock_destroy_callback CRYPTO_get_dynlock_destroy_cb
1.151 +#undef CRYPTO_get_dynlock_create_callback
1.152 +#define CRYPTO_get_dynlock_create_callback CRYPTO_get_dynlock_create_cb
1.153 +#undef CRYPTO_set_locked_mem_ex_functions
1.154 +#define CRYPTO_set_locked_mem_ex_functions CRYPTO_set_locked_mem_ex_funcs
1.155 +#undef CRYPTO_get_locked_mem_ex_functions
1.156 +#define CRYPTO_get_locked_mem_ex_functions CRYPTO_get_locked_mem_ex_funcs
1.157 +
1.158 +/* Hack some long SSL names */
1.159 +#undef SSL_CTX_set_default_verify_paths
1.160 +#define SSL_CTX_set_default_verify_paths SSL_CTX_set_def_verify_paths
1.161 +#undef SSL_get_ex_data_X509_STORE_CTX_idx
1.162 +#define SSL_get_ex_data_X509_STORE_CTX_idx SSL_get_ex_d_X509_STORE_CTX_idx
1.163 +#undef SSL_add_file_cert_subjects_to_stack
1.164 +#define SSL_add_file_cert_subjects_to_stack SSL_add_file_cert_subjs_to_stk
1.165 +#undef SSL_add_dir_cert_subjects_to_stack
1.166 +#define SSL_add_dir_cert_subjects_to_stack SSL_add_dir_cert_subjs_to_stk
1.167 +#undef SSL_CTX_use_certificate_chain_file
1.168 +#define SSL_CTX_use_certificate_chain_file SSL_CTX_use_cert_chain_file
1.169 +#undef SSL_CTX_set_cert_verify_callback
1.170 +#define SSL_CTX_set_cert_verify_callback SSL_CTX_set_cert_verify_cb
1.171 +#undef SSL_CTX_set_default_passwd_cb_userdata
1.172 +#define SSL_CTX_set_default_passwd_cb_userdata SSL_CTX_set_def_passwd_cb_ud
1.173 +#undef SSL_COMP_get_compression_methods
1.174 +#define SSL_COMP_get_compression_methods SSL_COMP_get_compress_methods
1.175 +
1.176 +/* Hack some long ENGINE names */
1.177 +#undef ENGINE_get_default_BN_mod_exp_crt
1.178 +#define ENGINE_get_default_BN_mod_exp_crt ENGINE_get_def_BN_mod_exp_crt
1.179 +#undef ENGINE_set_default_BN_mod_exp_crt
1.180 +#define ENGINE_set_default_BN_mod_exp_crt ENGINE_set_def_BN_mod_exp_crt
1.181 +#undef ENGINE_set_load_privkey_function
1.182 +#define ENGINE_set_load_privkey_function ENGINE_set_load_privkey_fn
1.183 +#undef ENGINE_get_load_privkey_function
1.184 +#define ENGINE_get_load_privkey_function ENGINE_get_load_privkey_fn
1.185 +
1.186 +/* Hack some long OCSP names */
1.187 +#undef OCSP_REQUEST_get_ext_by_critical
1.188 +#define OCSP_REQUEST_get_ext_by_critical OCSP_REQUEST_get_ext_by_crit
1.189 +#undef OCSP_BASICRESP_get_ext_by_critical
1.190 +#define OCSP_BASICRESP_get_ext_by_critical OCSP_BASICRESP_get_ext_by_crit
1.191 +#undef OCSP_SINGLERESP_get_ext_by_critical
1.192 +#define OCSP_SINGLERESP_get_ext_by_critical OCSP_SINGLERESP_get_ext_by_crit
1.193 +
1.194 +/* Hack some long DES names */
1.195 +#undef _ossl_old_des_ede3_cfb64_encrypt
1.196 +#define _ossl_old_des_ede3_cfb64_encrypt _ossl_odes_ede3_cfb64_encrypt
1.197 +#undef _ossl_old_des_ede3_ofb64_encrypt
1.198 +#define _ossl_old_des_ede3_ofb64_encrypt _ossl_odes_ede3_ofb64_encrypt
1.199 +
1.200 +/* Hack some long EVP names */
1.201 +#undef OPENSSL_add_all_algorithms_noconf
1.202 +#define OPENSSL_add_all_algorithms_noconf OPENSSL_add_all_algo_noconf
1.203 +#undef OPENSSL_add_all_algorithms_conf
1.204 +#define OPENSSL_add_all_algorithms_conf OPENSSL_add_all_algo_conf
1.205 +
1.206 +/* Hack some long EC names */
1.207 +#undef EC_GROUP_set_point_conversion_form
1.208 +#define EC_GROUP_set_point_conversion_form EC_GROUP_set_point_conv_form
1.209 +#undef EC_GROUP_get_point_conversion_form
1.210 +#define EC_GROUP_get_point_conversion_form EC_GROUP_get_point_conv_form
1.211 +#undef EC_GROUP_clear_free_all_extra_data
1.212 +#define EC_GROUP_clear_free_all_extra_data EC_GROUP_clr_free_all_xtra_data
1.213 +#undef EC_POINT_set_Jprojective_coordinates_GFp
1.214 +#define EC_POINT_set_Jprojective_coordinates_GFp \
1.215 + EC_POINT_set_Jproj_coords_GFp
1.216 +#undef EC_POINT_get_Jprojective_coordinates_GFp
1.217 +#define EC_POINT_get_Jprojective_coordinates_GFp \
1.218 + EC_POINT_get_Jproj_coords_GFp
1.219 +#undef EC_POINT_set_affine_coordinates_GFp
1.220 +#define EC_POINT_set_affine_coordinates_GFp EC_POINT_set_affine_coords_GFp
1.221 +#undef EC_POINT_get_affine_coordinates_GFp
1.222 +#define EC_POINT_get_affine_coordinates_GFp EC_POINT_get_affine_coords_GFp
1.223 +#undef EC_POINT_set_compressed_coordinates_GFp
1.224 +#define EC_POINT_set_compressed_coordinates_GFp EC_POINT_set_compr_coords_GFp
1.225 +#undef EC_POINT_set_affine_coordinates_GF2m
1.226 +#define EC_POINT_set_affine_coordinates_GF2m EC_POINT_set_affine_coords_GF2m
1.227 +#undef EC_POINT_get_affine_coordinates_GF2m
1.228 +#define EC_POINT_get_affine_coordinates_GF2m EC_POINT_get_affine_coords_GF2m
1.229 +#undef EC_POINT_set_compressed_coordinates_GF2m
1.230 +#define EC_POINT_set_compressed_coordinates_GF2m \
1.231 + EC_POINT_set_compr_coords_GF2m
1.232 +#undef ec_GF2m_simple_group_clear_finish
1.233 +#define ec_GF2m_simple_group_clear_finish ec_GF2m_simple_grp_clr_finish
1.234 +#undef ec_GF2m_simple_group_check_discriminant
1.235 +#define ec_GF2m_simple_group_check_discriminant ec_GF2m_simple_grp_chk_discrim
1.236 +#undef ec_GF2m_simple_point_clear_finish
1.237 +#define ec_GF2m_simple_point_clear_finish ec_GF2m_simple_pt_clr_finish
1.238 +#undef ec_GF2m_simple_point_set_to_infinity
1.239 +#define ec_GF2m_simple_point_set_to_infinity ec_GF2m_simple_pt_set_to_inf
1.240 +#undef ec_GF2m_simple_points_make_affine
1.241 +#define ec_GF2m_simple_points_make_affine ec_GF2m_simple_pts_make_affine
1.242 +#undef ec_GF2m_simple_point_set_affine_coordinates
1.243 +#define ec_GF2m_simple_point_set_affine_coordinates \
1.244 + ec_GF2m_smp_pt_set_af_coords
1.245 +#undef ec_GF2m_simple_point_get_affine_coordinates
1.246 +#define ec_GF2m_simple_point_get_affine_coordinates \
1.247 + ec_GF2m_smp_pt_get_af_coords
1.248 +#undef ec_GF2m_simple_set_compressed_coordinates
1.249 +#define ec_GF2m_simple_set_compressed_coordinates \
1.250 + ec_GF2m_smp_set_compr_coords
1.251 +#undef ec_GFp_simple_group_set_curve_GFp
1.252 +#define ec_GFp_simple_group_set_curve_GFp ec_GFp_simple_grp_set_curve_GFp
1.253 +#undef ec_GFp_simple_group_get_curve_GFp
1.254 +#define ec_GFp_simple_group_get_curve_GFp ec_GFp_simple_grp_get_curve_GFp
1.255 +#undef ec_GFp_simple_group_clear_finish
1.256 +#define ec_GFp_simple_group_clear_finish ec_GFp_simple_grp_clear_finish
1.257 +#undef ec_GFp_simple_group_set_generator
1.258 +#define ec_GFp_simple_group_set_generator ec_GFp_simple_grp_set_generator
1.259 +#undef ec_GFp_simple_group_get0_generator
1.260 +#define ec_GFp_simple_group_get0_generator ec_GFp_simple_grp_gt0_generator
1.261 +#undef ec_GFp_simple_group_get_cofactor
1.262 +#define ec_GFp_simple_group_get_cofactor ec_GFp_simple_grp_get_cofactor
1.263 +#undef ec_GFp_simple_point_clear_finish
1.264 +#define ec_GFp_simple_point_clear_finish ec_GFp_simple_pt_clear_finish
1.265 +#undef ec_GFp_simple_point_set_to_infinity
1.266 +#define ec_GFp_simple_point_set_to_infinity ec_GFp_simple_pt_set_to_inf
1.267 +#undef ec_GFp_simple_points_make_affine
1.268 +#define ec_GFp_simple_points_make_affine ec_GFp_simple_pts_make_affine
1.269 +#undef ec_GFp_simple_group_get_curve_GFp
1.270 +#define ec_GFp_simple_group_get_curve_GFp ec_GFp_simple_grp_get_curve_GFp
1.271 +#undef ec_GFp_simple_set_Jprojective_coordinates_GFp
1.272 +#define ec_GFp_simple_set_Jprojective_coordinates_GFp \
1.273 + ec_GFp_smp_set_Jproj_coords_GFp
1.274 +#undef ec_GFp_simple_get_Jprojective_coordinates_GFp
1.275 +#define ec_GFp_simple_get_Jprojective_coordinates_GFp \
1.276 + ec_GFp_smp_get_Jproj_coords_GFp
1.277 +#undef ec_GFp_simple_point_set_affine_coordinates_GFp
1.278 +#define ec_GFp_simple_point_set_affine_coordinates_GFp \
1.279 + ec_GFp_smp_pt_set_af_coords_GFp
1.280 +#undef ec_GFp_simple_point_get_affine_coordinates_GFp
1.281 +#define ec_GFp_simple_point_get_affine_coordinates_GFp \
1.282 + ec_GFp_smp_pt_get_af_coords_GFp
1.283 +#undef ec_GFp_simple_set_compressed_coordinates_GFp
1.284 +#define ec_GFp_simple_set_compressed_coordinates_GFp \
1.285 + ec_GFp_smp_set_compr_coords_GFp
1.286 +#undef ec_GFp_simple_point_set_affine_coordinates
1.287 +#define ec_GFp_simple_point_set_affine_coordinates \
1.288 + ec_GFp_smp_pt_set_af_coords
1.289 +#undef ec_GFp_simple_point_get_affine_coordinates
1.290 +#define ec_GFp_simple_point_get_affine_coordinates \
1.291 + ec_GFp_smp_pt_get_af_coords
1.292 +#undef ec_GFp_simple_set_compressed_coordinates
1.293 +#define ec_GFp_simple_set_compressed_coordinates \
1.294 + ec_GFp_smp_set_compr_coords
1.295 +#undef ec_GFp_simple_group_check_discriminant
1.296 +#define ec_GFp_simple_group_check_discriminant ec_GFp_simple_grp_chk_discrim
1.297 +
1.298 +/* Hack som long STORE names */
1.299 +#undef STORE_method_set_initialise_function
1.300 +#define STORE_method_set_initialise_function STORE_meth_set_initialise_fn
1.301 +#undef STORE_method_set_cleanup_function
1.302 +#define STORE_method_set_cleanup_function STORE_meth_set_cleanup_fn
1.303 +#undef STORE_method_set_generate_function
1.304 +#define STORE_method_set_generate_function STORE_meth_set_generate_fn
1.305 +#undef STORE_method_set_modify_function
1.306 +#define STORE_method_set_modify_function STORE_meth_set_modify_fn
1.307 +#undef STORE_method_set_revoke_function
1.308 +#define STORE_method_set_revoke_function STORE_meth_set_revoke_fn
1.309 +#undef STORE_method_set_delete_function
1.310 +#define STORE_method_set_delete_function STORE_meth_set_delete_fn
1.311 +#undef STORE_method_set_list_start_function
1.312 +#define STORE_method_set_list_start_function STORE_meth_set_list_start_fn
1.313 +#undef STORE_method_set_list_next_function
1.314 +#define STORE_method_set_list_next_function STORE_meth_set_list_next_fn
1.315 +#undef STORE_method_set_list_end_function
1.316 +#define STORE_method_set_list_end_function STORE_meth_set_list_end_fn
1.317 +#undef STORE_method_set_update_store_function
1.318 +#define STORE_method_set_update_store_function STORE_meth_set_update_store_fn
1.319 +#undef STORE_method_set_lock_store_function
1.320 +#define STORE_method_set_lock_store_function STORE_meth_set_lock_store_fn
1.321 +#undef STORE_method_set_unlock_store_function
1.322 +#define STORE_method_set_unlock_store_function STORE_meth_set_unlock_store_fn
1.323 +#undef STORE_method_get_initialise_function
1.324 +#define STORE_method_get_initialise_function STORE_meth_get_initialise_fn
1.325 +#undef STORE_method_get_cleanup_function
1.326 +#define STORE_method_get_cleanup_function STORE_meth_get_cleanup_fn
1.327 +#undef STORE_method_get_generate_function
1.328 +#define STORE_method_get_generate_function STORE_meth_get_generate_fn
1.329 +#undef STORE_method_get_modify_function
1.330 +#define STORE_method_get_modify_function STORE_meth_get_modify_fn
1.331 +#undef STORE_method_get_revoke_function
1.332 +#define STORE_method_get_revoke_function STORE_meth_get_revoke_fn
1.333 +#undef STORE_method_get_delete_function
1.334 +#define STORE_method_get_delete_function STORE_meth_get_delete_fn
1.335 +#undef STORE_method_get_list_start_function
1.336 +#define STORE_method_get_list_start_function STORE_meth_get_list_start_fn
1.337 +#undef STORE_method_get_list_next_function
1.338 +#define STORE_method_get_list_next_function STORE_meth_get_list_next_fn
1.339 +#undef STORE_method_get_list_end_function
1.340 +#define STORE_method_get_list_end_function STORE_meth_get_list_end_fn
1.341 +#undef STORE_method_get_update_store_function
1.342 +#define STORE_method_get_update_store_function STORE_meth_get_update_store_fn
1.343 +#undef STORE_method_get_lock_store_function
1.344 +#define STORE_method_get_lock_store_function STORE_meth_get_lock_store_fn
1.345 +#undef STORE_method_get_unlock_store_function
1.346 +#define STORE_method_get_unlock_store_function STORE_meth_get_unlock_store_fn
1.347 +
1.348 +#endif /* defined OPENSSL_SYS_VMS */
1.349 +
1.350 +
1.351 +/* Case insensiteve linking causes problems.... */
1.352 +#if defined(OPENSSL_SYS_WIN16) || defined(OPENSSL_SYS_VMS) || defined(OPENSSL_SYS_OS2)
1.353 +#undef ERR_load_CRYPTO_strings
1.354 +#define ERR_load_CRYPTO_strings ERR_load_CRYPTOlib_strings
1.355 +#undef OCSP_crlID_new
1.356 +#define OCSP_crlID_new OCSP_crlID2_new
1.357 +
1.358 +#undef d2i_ECPARAMETERS
1.359 +#define d2i_ECPARAMETERS d2i_UC_ECPARAMETERS
1.360 +#undef i2d_ECPARAMETERS
1.361 +#define i2d_ECPARAMETERS i2d_UC_ECPARAMETERS
1.362 +#undef d2i_ECPKPARAMETERS
1.363 +#define d2i_ECPKPARAMETERS d2i_UC_ECPKPARAMETERS
1.364 +#undef i2d_ECPKPARAMETERS
1.365 +#define i2d_ECPKPARAMETERS i2d_UC_ECPKPARAMETERS
1.366 +
1.367 +/* These functions do not seem to exist! However, I'm paranoid...
1.368 + Original command in x509v3.h:
1.369 + These functions are being redefined in another directory,
1.370 + and clash when the linker is case-insensitive, so let's
1.371 + hide them a little, by giving them an extra 'o' at the
1.372 + beginning of the name... */
1.373 +#undef X509v3_cleanup_extensions
1.374 +#define X509v3_cleanup_extensions oX509v3_cleanup_extensions
1.375 +#undef X509v3_add_extension
1.376 +#define X509v3_add_extension oX509v3_add_extension
1.377 +#undef X509v3_add_netscape_extensions
1.378 +#define X509v3_add_netscape_extensions oX509v3_add_netscape_extensions
1.379 +#undef X509v3_add_standard_extensions
1.380 +#define X509v3_add_standard_extensions oX509v3_add_standard_extensions
1.381 +
1.382 +
1.383 +#endif
1.384 +
1.385 +
1.386 +#endif /* ! defined HEADER_VMS_IDHACKS_H */