提交 ab23d5ff 编写于 作者: R Richard Levitte

Add symbol hacks for some long names.

make update
上级 1a979201
...@@ -238,9 +238,10 @@ e_des.o: ../../include/openssl/err.h ../../include/openssl/evp.h ...@@ -238,9 +238,10 @@ e_des.o: ../../include/openssl/err.h ../../include/openssl/evp.h
e_des.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h e_des.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
e_des.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h e_des.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
e_des.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h e_des.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
e_des.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h e_des.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
e_des.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h e_des.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
e_des.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des.c evp_locl.h e_des.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
e_des.o: ../cryptlib.h e_des.c evp_locl.h
e_des3.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h e_des3.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
e_des3.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h e_des3.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
e_des3.o: ../../include/openssl/crypto.h ../../include/openssl/des.h e_des3.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
...@@ -249,9 +250,10 @@ e_des3.o: ../../include/openssl/err.h ../../include/openssl/evp.h ...@@ -249,9 +250,10 @@ e_des3.o: ../../include/openssl/err.h ../../include/openssl/evp.h
e_des3.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h e_des3.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
e_des3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h e_des3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
e_des3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h e_des3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
e_des3.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h e_des3.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
e_des3.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h e_des3.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
e_des3.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des3.c evp_locl.h e_des3.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
e_des3.o: ../cryptlib.h e_des3.c evp_locl.h
e_idea.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h e_idea.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
e_idea.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h e_idea.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
e_idea.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h e_idea.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
......
...@@ -127,6 +127,10 @@ ...@@ -127,6 +127,10 @@
/* Hack some long X509 names */ /* Hack some long X509 names */
#undef X509_REVOKED_get_ext_by_critical #undef X509_REVOKED_get_ext_by_critical
#define X509_REVOKED_get_ext_by_critical X509_REVOKED_get_ext_by_critic #define X509_REVOKED_get_ext_by_critical X509_REVOKED_get_ext_by_critic
#undef X509_policy_tree_get0_user_policies
#define X509_policy_tree_get0_user_policies X509_pcy_tree_get0_usr_policies
#undef X509_policy_node_get0_qualifiers
#define X509_policy_node_get0_qualifiers X509_pcy_node_get0_qualifiers
/* Hack some long CRYPTO names */ /* Hack some long CRYPTO names */
#undef CRYPTO_set_dynlock_destroy_callback #undef CRYPTO_set_dynlock_destroy_callback
...@@ -288,6 +292,56 @@ ...@@ -288,6 +292,56 @@
#undef ec_GFp_simple_group_check_discriminant #undef ec_GFp_simple_group_check_discriminant
#define ec_GFp_simple_group_check_discriminant ec_GFp_simple_grp_chk_discrim #define ec_GFp_simple_group_check_discriminant ec_GFp_simple_grp_chk_discrim
/* Hack som long STORE names */
#undef STORE_method_set_initialise_function
#define STORE_method_set_initialise_function STORE_meth_set_initialise_fn
#undef STORE_method_set_cleanup_function
#define STORE_method_set_cleanup_function STORE_meth_set_cleanup_fn
#undef STORE_method_set_generate_function
#define STORE_method_set_generate_function STORE_meth_set_generate_fn
#undef STORE_method_set_modify_function
#define STORE_method_set_modify_function STORE_meth_set_modify_fn
#undef STORE_method_set_revoke_function
#define STORE_method_set_revoke_function STORE_meth_set_revoke_fn
#undef STORE_method_set_delete_function
#define STORE_method_set_delete_function STORE_meth_set_delete_fn
#undef STORE_method_set_list_start_function
#define STORE_method_set_list_start_function STORE_meth_set_list_start_fn
#undef STORE_method_set_list_next_function
#define STORE_method_set_list_next_function STORE_meth_set_list_next_fn
#undef STORE_method_set_list_end_function
#define STORE_method_set_list_end_function STORE_meth_set_list_end_fn
#undef STORE_method_set_update_store_function
#define STORE_method_set_update_store_function STORE_meth_set_update_store_fn
#undef STORE_method_set_lock_store_function
#define STORE_method_set_lock_store_function STORE_meth_set_lock_store_fn
#undef STORE_method_set_unlock_store_function
#define STORE_method_set_unlock_store_function STORE_meth_set_unlock_store_fn
#undef STORE_method_get_initialise_function
#define STORE_method_get_initialise_function STORE_meth_get_initialise_fn
#undef STORE_method_get_cleanup_function
#define STORE_method_get_cleanup_function STORE_meth_get_cleanup_fn
#undef STORE_method_get_generate_function
#define STORE_method_get_generate_function STORE_meth_get_generate_fn
#undef STORE_method_get_modify_function
#define STORE_method_get_modify_function STORE_meth_get_modify_fn
#undef STORE_method_get_revoke_function
#define STORE_method_get_revoke_function STORE_meth_get_revoke_fn
#undef STORE_method_get_delete_function
#define STORE_method_get_delete_function STORE_meth_get_delete_fn
#undef STORE_method_get_list_start_function
#define STORE_method_get_list_start_function STORE_meth_get_list_start_fn
#undef STORE_method_get_list_next_function
#define STORE_method_get_list_next_function STORE_meth_get_list_next_fn
#undef STORE_method_get_list_end_function
#define STORE_method_get_list_end_function STORE_meth_get_list_end_fn
#undef STORE_method_get_update_store_function
#define STORE_method_get_update_store_function STORE_meth_get_update_store_fn
#undef STORE_method_get_lock_store_function
#define STORE_method_get_lock_store_function STORE_meth_get_lock_store_fn
#undef STORE_method_get_unlock_store_function
#define STORE_method_get_unlock_store_function STORE_meth_get_unlock_store_fn
#endif /* defined OPENSSL_SYS_VMS */ #endif /* defined OPENSSL_SYS_VMS */
......
...@@ -2807,7 +2807,8 @@ ERR_release_err_state_table 3247 EXIST::FUNCTION:LHASH ...@@ -2807,7 +2807,8 @@ ERR_release_err_state_table 3247 EXIST::FUNCTION:LHASH
ERR_set_mark 3248 EXIST::FUNCTION: ERR_set_mark 3248 EXIST::FUNCTION:
ENGINE_set_STORE 3249 EXIST::FUNCTION:ENGINE ENGINE_set_STORE 3249 EXIST::FUNCTION:ENGINE
ENGINE_register_ECDSA 3250 EXIST::FUNCTION:ENGINE ENGINE_register_ECDSA 3250 EXIST::FUNCTION:ENGINE
STORE_method_set_list_start_function 3251 EXIST::FUNCTION: STORE_method_set_list_start_function 3251 EXIST:!VMS:FUNCTION:
STORE_meth_set_list_start_fn 3251 EXIST:VMS:FUNCTION:
NAME_CONSTRAINTS_free 3252 EXIST::FUNCTION: NAME_CONSTRAINTS_free 3252 EXIST::FUNCTION:
STORE_ATTR_INFO_set_number 3253 EXIST::FUNCTION: STORE_ATTR_INFO_set_number 3253 EXIST::FUNCTION:
POLICY_MAPPING_it 3254 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: POLICY_MAPPING_it 3254 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
...@@ -2822,7 +2823,8 @@ NAME_CONSTRAINTS_it 3261 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIA ...@@ -2822,7 +2823,8 @@ NAME_CONSTRAINTS_it 3261 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIA
NAME_CONSTRAINTS_it 3261 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: NAME_CONSTRAINTS_it 3261 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
ECDH_get_default_method 3262 EXIST::FUNCTION:ECDH ECDH_get_default_method 3262 EXIST::FUNCTION:ECDH
PKCS12_add_safe 3263 EXIST::FUNCTION: PKCS12_add_safe 3263 EXIST::FUNCTION:
STORE_method_get_update_store_function 3264 EXIST::FUNCTION: STORE_method_get_update_store_function 3264 EXIST:!VMS:FUNCTION:
STORE_meth_get_update_store_fn 3264 EXIST:VMS:FUNCTION:
ENGINE_register_ECDH 3265 EXIST::FUNCTION:ENGINE ENGINE_register_ECDH 3265 EXIST::FUNCTION:ENGINE
i2d_ECPrivateKey 3266 EXIST::FUNCTION:EC i2d_ECPrivateKey 3266 EXIST::FUNCTION:EC
BN_get0_nist_prime_192 3267 EXIST::FUNCTION: BN_get0_nist_prime_192 3267 EXIST::FUNCTION:
...@@ -2841,7 +2843,8 @@ EC_KEY_copy 3278 EXIST::FUNCTION:EC ...@@ -2841,7 +2843,8 @@ EC_KEY_copy 3278 EXIST::FUNCTION:EC
EC_GROUP_check_discriminant 3279 EXIST::FUNCTION:EC EC_GROUP_check_discriminant 3279 EXIST::FUNCTION:EC
i2o_ECPublicKey 3280 EXIST::FUNCTION:EC i2o_ECPublicKey 3280 EXIST::FUNCTION:EC
a2i_IPADDRESS 3281 EXIST::FUNCTION: a2i_IPADDRESS 3281 EXIST::FUNCTION:
STORE_method_set_initialise_function 3282 EXIST::FUNCTION: STORE_method_set_initialise_function 3282 EXIST:!VMS:FUNCTION:
STORE_meth_set_initialise_fn 3282 EXIST:VMS:FUNCTION:
EC_POINT_point2bn 3283 EXIST::FUNCTION:EC EC_POINT_point2bn 3283 EXIST::FUNCTION:EC
STORE_ATTR_INFO_set_dn 3284 EXIST::FUNCTION: STORE_ATTR_INFO_set_dn 3284 EXIST::FUNCTION:
EC_GROUP_new_curve_GF2m 3285 EXIST::FUNCTION:EC EC_GROUP_new_curve_GF2m 3285 EXIST::FUNCTION:EC
...@@ -2875,11 +2878,14 @@ EC_KEY_up_ref 3310 EXIST::FUNCTION:EC ...@@ -2875,11 +2878,14 @@ EC_KEY_up_ref 3310 EXIST::FUNCTION:EC
POLICY_MAPPING_free 3311 EXIST::FUNCTION: POLICY_MAPPING_free 3311 EXIST::FUNCTION:
BN_GF2m_mod_div 3312 EXIST::FUNCTION: BN_GF2m_mod_div 3312 EXIST::FUNCTION:
EC_KEY_free 3313 EXIST::FUNCTION:EC EC_KEY_free 3313 EXIST::FUNCTION:EC
STORE_method_set_list_next_function 3314 EXIST::FUNCTION: STORE_method_set_list_next_function 3314 EXIST:!VMS:FUNCTION:
STORE_meth_set_list_next_fn 3314 EXIST:VMS:FUNCTION:
PEM_write_bio_ECPrivateKey 3315 EXIST::FUNCTION:EC PEM_write_bio_ECPrivateKey 3315 EXIST::FUNCTION:EC
d2i_EC_PUBKEY 3316 EXIST::FUNCTION:EC d2i_EC_PUBKEY 3316 EXIST::FUNCTION:EC
STORE_method_get_generate_function 3317 EXIST::FUNCTION: STORE_method_get_generate_function 3317 EXIST:!VMS:FUNCTION:
STORE_method_set_list_end_function 3318 EXIST::FUNCTION: STORE_meth_get_generate_fn 3317 EXIST:VMS:FUNCTION:
STORE_method_set_list_end_function 3318 EXIST:!VMS:FUNCTION:
STORE_meth_set_list_end_fn 3318 EXIST:VMS:FUNCTION:
EC_GROUP_have_precompute_mult 3319 EXIST::FUNCTION:EC EC_GROUP_have_precompute_mult 3319 EXIST::FUNCTION:EC
EC_KEY_print_fp 3320 EXIST::FUNCTION:EC,FP_API EC_KEY_print_fp 3320 EXIST::FUNCTION:EC,FP_API
BN_GF2m_mod_arr 3321 EXIST::FUNCTION: BN_GF2m_mod_arr 3321 EXIST::FUNCTION:
...@@ -2917,7 +2923,8 @@ i2d_ECPKParameters 3352 EXIST::FUNCTION:EC ...@@ -2917,7 +2923,8 @@ i2d_ECPKParameters 3352 EXIST::FUNCTION:EC
BN_GENCB_call 3353 EXIST::FUNCTION: BN_GENCB_call 3353 EXIST::FUNCTION:
BN_ncopy 3354 EXIST::FUNCTION: BN_ncopy 3354 EXIST::FUNCTION:
d2i_ECPKParameters 3355 EXIST::FUNCTION:EC d2i_ECPKParameters 3355 EXIST::FUNCTION:EC
STORE_method_set_generate_function 3356 EXIST::FUNCTION: STORE_method_set_generate_function 3356 EXIST:!VMS:FUNCTION:
STORE_meth_set_generate_fn 3356 EXIST:VMS:FUNCTION:
ENGINE_set_ECDH 3357 EXIST::FUNCTION:ENGINE ENGINE_set_ECDH 3357 EXIST::FUNCTION:ENGINE
NAME_CONSTRAINTS_new 3358 EXIST::FUNCTION: NAME_CONSTRAINTS_new 3358 EXIST::FUNCTION:
PEM_write_bio_EC_PUBKEY 3359 EXIST::FUNCTION:EC PEM_write_bio_EC_PUBKEY 3359 EXIST::FUNCTION:EC
...@@ -2925,12 +2932,14 @@ STORE_ATTR_INFO_set_cstr 3360 EXIST::FUNCTION: ...@@ -2925,12 +2932,14 @@ STORE_ATTR_INFO_set_cstr 3360 EXIST::FUNCTION:
STORE_list_crl_next 3361 EXIST::FUNCTION: STORE_list_crl_next 3361 EXIST::FUNCTION:
STORE_ATTR_INFO_in_range 3362 EXIST::FUNCTION: STORE_ATTR_INFO_in_range 3362 EXIST::FUNCTION:
ECParameters_print 3363 EXIST::FUNCTION:BIO,EC ECParameters_print 3363 EXIST::FUNCTION:BIO,EC
STORE_method_set_delete_function 3364 EXIST::FUNCTION: STORE_method_set_delete_function 3364 EXIST:!VMS:FUNCTION:
STORE_meth_set_delete_fn 3364 EXIST:VMS:FUNCTION:
STORE_list_certificate_next 3365 EXIST::FUNCTION: STORE_list_certificate_next 3365 EXIST::FUNCTION:
ASN1_generate_nconf 3366 EXIST::FUNCTION: ASN1_generate_nconf 3366 EXIST::FUNCTION:
BUF_memdup 3367 EXIST::FUNCTION: BUF_memdup 3367 EXIST::FUNCTION:
BN_GF2m_mod_mul 3368 EXIST::FUNCTION: BN_GF2m_mod_mul 3368 EXIST::FUNCTION:
STORE_method_get_list_next_function 3369 EXIST::FUNCTION: STORE_method_get_list_next_function 3369 EXIST:!VMS:FUNCTION:
STORE_meth_get_list_next_fn 3369 EXIST:VMS:FUNCTION:
STORE_ATTR_INFO_get0_dn 3370 EXIST::FUNCTION: STORE_ATTR_INFO_get0_dn 3370 EXIST::FUNCTION:
STORE_list_private_key_next 3371 EXIST::FUNCTION: STORE_list_private_key_next 3371 EXIST::FUNCTION:
EC_GROUP_set_seed 3372 EXIST::FUNCTION:EC EC_GROUP_set_seed 3372 EXIST::FUNCTION:EC
...@@ -2938,7 +2947,8 @@ STORE_ATTR_INFO_free 3373 EXIST::FUNCTION: ...@@ -2938,7 +2947,8 @@ STORE_ATTR_INFO_free 3373 EXIST::FUNCTION:
STORE_get_private_key 3374 EXIST::FUNCTION: STORE_get_private_key 3374 EXIST::FUNCTION:
STORE_ATTR_INFO_new 3375 EXIST::FUNCTION: STORE_ATTR_INFO_new 3375 EXIST::FUNCTION:
EC_GROUP_get_curve_GF2m 3376 EXIST::FUNCTION:EC EC_GROUP_get_curve_GF2m 3376 EXIST::FUNCTION:EC
STORE_method_set_revoke_function 3377 EXIST::FUNCTION: STORE_method_set_revoke_function 3377 EXIST:!VMS:FUNCTION:
STORE_meth_set_revoke_fn 3377 EXIST:VMS:FUNCTION:
STORE_store_number 3378 EXIST::FUNCTION: STORE_store_number 3378 EXIST::FUNCTION:
BN_is_prime_ex 3379 EXIST::FUNCTION: BN_is_prime_ex 3379 EXIST::FUNCTION:
STORE_revoke_public_key 3380 EXIST::FUNCTION: STORE_revoke_public_key 3380 EXIST::FUNCTION:
...@@ -2960,11 +2970,13 @@ ECDSA_DATA_free 3395 EXIST::FUNCTION:ECDSA ...@@ -2960,11 +2970,13 @@ ECDSA_DATA_free 3395 EXIST::FUNCTION:ECDSA
STORE_modify_private_key 3396 EXIST::FUNCTION: STORE_modify_private_key 3396 EXIST::FUNCTION:
EC_METHOD_get_field_type 3397 EXIST::FUNCTION:EC EC_METHOD_get_field_type 3397 EXIST::FUNCTION:EC
EC_GFp_nist_method 3398 EXIST::FUNCTION:EC EC_GFp_nist_method 3398 EXIST::FUNCTION:EC
STORE_method_set_modify_function 3399 EXIST::FUNCTION: STORE_method_set_modify_function 3399 EXIST:!VMS:FUNCTION:
STORE_meth_set_modify_fn 3399 EXIST:VMS:FUNCTION:
STORE_parse_attrs_next 3400 EXIST::FUNCTION: STORE_parse_attrs_next 3400 EXIST::FUNCTION:
X509_CERT_PAIR_it 3401 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: X509_CERT_PAIR_it 3401 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
X509_CERT_PAIR_it 3401 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: X509_CERT_PAIR_it 3401 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
STORE_method_get_revoke_function 3402 EXIST::FUNCTION: STORE_method_get_revoke_function 3402 EXIST:!VMS:FUNCTION:
STORE_meth_get_revoke_fn 3402 EXIST:VMS:FUNCTION:
STORE_method_set_get_function 3403 EXIST::FUNCTION: STORE_method_set_get_function 3403 EXIST::FUNCTION:
STORE_modify_number 3404 EXIST::FUNCTION: STORE_modify_number 3404 EXIST::FUNCTION:
STORE_method_get_store_function 3405 EXIST::FUNCTION: STORE_method_get_store_function 3405 EXIST::FUNCTION:
...@@ -2980,11 +2992,14 @@ ECDH_set_default_method 3414 EXIST::FUNCTION:ECDH ...@@ -2980,11 +2992,14 @@ ECDH_set_default_method 3414 EXIST::FUNCTION:ECDH
EC_KEY_generate_key 3415 EXIST::FUNCTION:EC EC_KEY_generate_key 3415 EXIST::FUNCTION:EC
BN_GF2m_arr2poly 3416 EXIST::FUNCTION: BN_GF2m_arr2poly 3416 EXIST::FUNCTION:
STORE_method_get_get_function 3417 EXIST::FUNCTION: STORE_method_get_get_function 3417 EXIST::FUNCTION:
STORE_method_set_cleanup_function 3418 EXIST::FUNCTION: STORE_method_set_cleanup_function 3418 EXIST:!VMS:FUNCTION:
STORE_meth_set_cleanup_fn 3418 EXIST:VMS:FUNCTION:
EC_GROUP_check 3419 EXIST::FUNCTION:EC EC_GROUP_check 3419 EXIST::FUNCTION:EC
d2i_ECPrivateKey_bio 3420 EXIST::FUNCTION:BIO,EC d2i_ECPrivateKey_bio 3420 EXIST::FUNCTION:BIO,EC
STORE_method_get_lock_store_function 3421 EXIST::FUNCTION: STORE_method_get_lock_store_function 3421 EXIST:!VMS:FUNCTION:
STORE_method_set_update_store_function 3422 EXIST::FUNCTION: STORE_meth_get_lock_store_fn 3421 EXIST:VMS:FUNCTION:
STORE_method_set_update_store_function 3422 EXIST:!VMS:FUNCTION:
STORE_meth_set_update_store_fn 3422 EXIST:VMS:FUNCTION:
d2i_ECPrivateKey 3423 EXIST::FUNCTION:EC d2i_ECPrivateKey 3423 EXIST::FUNCTION:EC
ASN1_item_ndef_i2d 3424 EXIST::FUNCTION: ASN1_item_ndef_i2d 3424 EXIST::FUNCTION:
STORE_delete_private_key 3425 EXIST::FUNCTION: STORE_delete_private_key 3425 EXIST::FUNCTION:
...@@ -3001,25 +3016,29 @@ X509_CERT_PAIR_free 3435 EXIST::FUNCTION: ...@@ -3001,25 +3016,29 @@ X509_CERT_PAIR_free 3435 EXIST::FUNCTION:
STORE_revoke_private_key 3436 EXIST::FUNCTION: STORE_revoke_private_key 3436 EXIST::FUNCTION:
BN_nist_mod_224 3437 EXIST::FUNCTION: BN_nist_mod_224 3437 EXIST::FUNCTION:
STORE_ATTR_INFO_modify_dn 3438 EXIST::FUNCTION: STORE_ATTR_INFO_modify_dn 3438 EXIST::FUNCTION:
STORE_method_get_initialise_function 3439 EXIST::FUNCTION: STORE_method_get_initialise_function 3439 EXIST:!VMS:FUNCTION:
STORE_meth_get_initialise_fn 3439 EXIST:VMS:FUNCTION:
STORE_delete_number 3440 EXIST::FUNCTION: STORE_delete_number 3440 EXIST::FUNCTION:
i2d_EC_PUBKEY_bio 3441 EXIST::FUNCTION:BIO,EC i2d_EC_PUBKEY_bio 3441 EXIST::FUNCTION:BIO,EC
EC_GROUP_get_asn1_flag 3442 EXIST::FUNCTION:EC EC_GROUP_get_asn1_flag 3442 EXIST::FUNCTION:EC
STORE_ATTR_INFO_in_ex 3443 EXIST::FUNCTION: STORE_ATTR_INFO_in_ex 3443 EXIST::FUNCTION:
STORE_list_crl_start 3444 EXIST::FUNCTION: STORE_list_crl_start 3444 EXIST::FUNCTION:
ECDH_get_ex_new_index 3445 EXIST::FUNCTION:ECDH ECDH_get_ex_new_index 3445 EXIST::FUNCTION:ECDH
STORE_method_get_modify_function 3446 EXIST::FUNCTION: STORE_method_get_modify_function 3446 EXIST:!VMS:FUNCTION:
STORE_meth_get_modify_fn 3446 EXIST:VMS:FUNCTION:
STORE_store_certificate 3447 EXIST::FUNCTION: STORE_store_certificate 3447 EXIST::FUNCTION:
OBJ_bsearch_ex 3448 EXIST::FUNCTION: OBJ_bsearch_ex 3448 EXIST::FUNCTION:
STORE_ATTR_INFO_set_sha1str 3449 EXIST::FUNCTION: STORE_ATTR_INFO_set_sha1str 3449 EXIST::FUNCTION:
BN_GF2m_mod_inv 3450 EXIST::FUNCTION: BN_GF2m_mod_inv 3450 EXIST::FUNCTION:
BN_GF2m_mod_exp 3451 EXIST::FUNCTION: BN_GF2m_mod_exp 3451 EXIST::FUNCTION:
STORE_modify_public_key 3452 EXIST::FUNCTION: STORE_modify_public_key 3452 EXIST::FUNCTION:
STORE_method_get_list_start_function 3453 EXIST::FUNCTION: STORE_method_get_list_start_function 3453 EXIST:!VMS:FUNCTION:
STORE_meth_get_list_start_fn 3453 EXIST:VMS:FUNCTION:
EC_GROUP_get0_seed 3454 EXIST::FUNCTION:EC EC_GROUP_get0_seed 3454 EXIST::FUNCTION:EC
ecdsa_check 3455 EXIST::FUNCTION:ECDSA ecdsa_check 3455 EXIST::FUNCTION:ECDSA
STORE_store_arbitrary 3456 EXIST::FUNCTION: STORE_store_arbitrary 3456 EXIST::FUNCTION:
STORE_method_set_unlock_store_function 3457 EXIST::FUNCTION: STORE_method_set_unlock_store_function 3457 EXIST:!VMS:FUNCTION:
STORE_meth_set_unlock_store_fn 3457 EXIST:VMS:FUNCTION:
BN_GF2m_mod_div_arr 3458 EXIST::FUNCTION: BN_GF2m_mod_div_arr 3458 EXIST::FUNCTION:
ENGINE_set_ECDSA 3459 EXIST::FUNCTION:ENGINE ENGINE_set_ECDSA 3459 EXIST::FUNCTION:ENGINE
STORE_create_method 3460 EXIST::FUNCTION: STORE_create_method 3460 EXIST::FUNCTION:
...@@ -3043,7 +3062,8 @@ EC_GROUP_cmp 3475 EXIST::FUNCTION:EC ...@@ -3043,7 +3062,8 @@ EC_GROUP_cmp 3475 EXIST::FUNCTION:EC
STORE_revoke_certificate 3476 EXIST::FUNCTION: STORE_revoke_certificate 3476 EXIST::FUNCTION:
ECDH_DATA_new_method 3477 EXIST::FUNCTION:ECDH ECDH_DATA_new_method 3477 EXIST::FUNCTION:ECDH
BN_get0_nist_prime_256 3478 EXIST::FUNCTION: BN_get0_nist_prime_256 3478 EXIST::FUNCTION:
STORE_method_get_delete_function 3479 EXIST::FUNCTION: STORE_method_get_delete_function 3479 EXIST:!VMS:FUNCTION:
STORE_meth_get_delete_fn 3479 EXIST:VMS:FUNCTION:
PEM_read_ECPrivateKey 3480 EXIST:!WIN16:FUNCTION:EC PEM_read_ECPrivateKey 3480 EXIST:!WIN16:FUNCTION:EC
STORE_parse_attrs_endp 3481 EXIST::FUNCTION: STORE_parse_attrs_endp 3481 EXIST::FUNCTION:
ERR_load_ECDSA_strings 3482 EXIST::FUNCTION:ECDSA ERR_load_ECDSA_strings 3482 EXIST::FUNCTION:ECDSA
...@@ -3079,7 +3099,8 @@ STORE_delete_certificate 3509 EXIST::FUNCTION: ...@@ -3079,7 +3099,8 @@ STORE_delete_certificate 3509 EXIST::FUNCTION:
STORE_method_get_ctrl_function 3510 EXIST::FUNCTION: STORE_method_get_ctrl_function 3510 EXIST::FUNCTION:
STORE_free 3511 EXIST::FUNCTION: STORE_free 3511 EXIST::FUNCTION:
PEM_write_ECPrivateKey 3512 EXIST:!WIN16:FUNCTION:EC PEM_write_ECPrivateKey 3512 EXIST:!WIN16:FUNCTION:EC
STORE_method_get_unlock_store_function 3513 EXIST::FUNCTION: STORE_method_get_unlock_store_function 3513 EXIST:!VMS:FUNCTION:
STORE_meth_get_unlock_store_fn 3513 EXIST:VMS:FUNCTION:
STORE_get_ex_data 3514 EXIST::FUNCTION: STORE_get_ex_data 3514 EXIST::FUNCTION:
PEM_read_ECPKParameters 3515 EXIST:!WIN16:FUNCTION:EC PEM_read_ECPKParameters 3515 EXIST:!WIN16:FUNCTION:EC
X509_CERT_PAIR_new 3516 EXIST::FUNCTION: X509_CERT_PAIR_new 3516 EXIST::FUNCTION:
...@@ -3108,7 +3129,8 @@ STORE_ATTR_INFO_modify_sha1str 3536 EXIST::FUNCTION: ...@@ -3108,7 +3129,8 @@ STORE_ATTR_INFO_modify_sha1str 3536 EXIST::FUNCTION:
BN_generate_prime_ex 3537 EXIST::FUNCTION: BN_generate_prime_ex 3537 EXIST::FUNCTION:
DH_generate_parameters_ex 3538 EXIST::FUNCTION:DH DH_generate_parameters_ex 3538 EXIST::FUNCTION:DH
PEM_read_bio_ECPrivateKey 3539 EXIST::FUNCTION:EC PEM_read_bio_ECPrivateKey 3539 EXIST::FUNCTION:EC
STORE_method_get_cleanup_function 3540 EXIST::FUNCTION: STORE_method_get_cleanup_function 3540 EXIST:!VMS:FUNCTION:
STORE_meth_get_cleanup_fn 3540 EXIST:VMS:FUNCTION:
ENGINE_get_ECDH 3541 EXIST::FUNCTION:ENGINE ENGINE_get_ECDH 3541 EXIST::FUNCTION:ENGINE
d2i_ECDSA_SIG 3542 EXIST::FUNCTION:ECDSA d2i_ECDSA_SIG 3542 EXIST::FUNCTION:ECDSA
BN_is_prime_fasttest_ex 3543 EXIST::FUNCTION: BN_is_prime_fasttest_ex 3543 EXIST::FUNCTION:
...@@ -3128,7 +3150,8 @@ STORE_get_crl 3556 EXIST::FUNCTION: ...@@ -3128,7 +3150,8 @@ STORE_get_crl 3556 EXIST::FUNCTION:
EC_GF2m_simple_method 3557 EXIST::FUNCTION:EC EC_GF2m_simple_method 3557 EXIST::FUNCTION:EC
ECDSA_set_ex_data 3558 EXIST::FUNCTION:ECDSA ECDSA_set_ex_data 3558 EXIST::FUNCTION:ECDSA
EC_KEY_print 3559 EXIST::FUNCTION:BIO,EC EC_KEY_print 3559 EXIST::FUNCTION:BIO,EC
STORE_method_set_lock_store_function 3560 EXIST::FUNCTION: STORE_method_set_lock_store_function 3560 EXIST:!VMS:FUNCTION:
STORE_meth_set_lock_store_fn 3560 EXIST:VMS:FUNCTION:
ECDSA_get_ex_new_index 3561 EXIST::FUNCTION:ECDSA ECDSA_get_ex_new_index 3561 EXIST::FUNCTION:ECDSA
POLICY_MAPPING_new 3562 EXIST::FUNCTION: POLICY_MAPPING_new 3562 EXIST::FUNCTION:
STORE_list_certificate_endp 3563 EXIST::FUNCTION: STORE_list_certificate_endp 3563 EXIST::FUNCTION:
...@@ -3138,7 +3161,8 @@ d2i_EC_PUBKEY_fp 3566 EXIST::FUNCTION:EC,FP_API ...@@ -3138,7 +3161,8 @@ d2i_EC_PUBKEY_fp 3566 EXIST::FUNCTION:EC,FP_API
ecdh_check 3567 EXIST::FUNCTION:ECDH ecdh_check 3567 EXIST::FUNCTION:ECDH
ECDSA_DATA_new_method 3568 EXIST::FUNCTION:ECDSA ECDSA_DATA_new_method 3568 EXIST::FUNCTION:ECDSA
PEM_read_bio_X509_CERT_PAIR 3569 EXIST::FUNCTION: PEM_read_bio_X509_CERT_PAIR 3569 EXIST::FUNCTION:
STORE_method_get_list_end_function 3570 EXIST::FUNCTION: STORE_method_get_list_end_function 3570 EXIST:!VMS:FUNCTION:
STORE_meth_get_list_end_fn 3570 EXIST:VMS:FUNCTION:
ENGINE_set_default_ECDH 3571 EXIST::FUNCTION:ENGINE ENGINE_set_default_ECDH 3571 EXIST::FUNCTION:ENGINE
STORE_new_method 3572 EXIST::FUNCTION: STORE_new_method 3572 EXIST::FUNCTION:
PKCS12_add_key 3573 EXIST::FUNCTION: PKCS12_add_key 3573 EXIST::FUNCTION:
...@@ -3165,7 +3189,8 @@ EVP_des_ede3_cfb1 3593 EXIST::FUNCTION:DES ...@@ -3165,7 +3189,8 @@ EVP_des_ede3_cfb1 3593 EXIST::FUNCTION:DES
X509_policy_node_get0_parent 3594 EXIST::FUNCTION: X509_policy_node_get0_parent 3594 EXIST::FUNCTION:
X509_policy_tree_get0_policies 3595 EXIST::FUNCTION: X509_policy_tree_get0_policies 3595 EXIST::FUNCTION:
X509_policy_level_node_count 3596 EXIST::FUNCTION: X509_policy_level_node_count 3596 EXIST::FUNCTION:
X509_policy_node_get0_qualifiers 3597 EXIST::FUNCTION: X509_policy_node_get0_qualifiers 3597 EXIST:!VMS:FUNCTION:
X509_pcy_node_get0_qualifiers 3597 EXIST:VMS:FUNCTION:
X509_policy_node_get0_policy 3598 EXIST::FUNCTION: X509_policy_node_get0_policy 3598 EXIST::FUNCTION:
X509_policy_tree_free 3599 EXIST::FUNCTION: X509_policy_tree_free 3599 EXIST::FUNCTION:
AES_cfbr_encrypt_block 3600 EXIST::FUNCTION:AES AES_cfbr_encrypt_block 3600 EXIST::FUNCTION:AES
...@@ -3174,7 +3199,8 @@ X509_policy_level_get0_node 3602 EXIST::FUNCTION: ...@@ -3174,7 +3199,8 @@ X509_policy_level_get0_node 3602 EXIST::FUNCTION:
X509_policy_tree_level_count 3603 EXIST::FUNCTION: X509_policy_tree_level_count 3603 EXIST::FUNCTION:
X509_policy_tree_get0_level 3604 EXIST::FUNCTION: X509_policy_tree_get0_level 3604 EXIST::FUNCTION:
ASN1_const_check_infinite_end 3605 EXIST::FUNCTION: ASN1_const_check_infinite_end 3605 EXIST::FUNCTION:
X509_policy_tree_get0_user_policies 3606 EXIST::FUNCTION: X509_policy_tree_get0_user_policies 3606 EXIST:!VMS:FUNCTION:
X509_pcy_tree_get0_usr_policies 3606 EXIST:VMS:FUNCTION:
X509_policy_lib_init 3607 EXIST::FUNCTION: X509_policy_lib_init 3607 EXIST::FUNCTION:
asn1_const_Finish 3608 EXIST::FUNCTION: asn1_const_Finish 3608 EXIST::FUNCTION:
X509_policy_check 3609 EXIST::FUNCTION: X509_policy_check 3609 EXIST::FUNCTION:
...@@ -3182,3 +3208,4 @@ AES_cfb1_encrypt 3610 EXIST::FUNCTION:AES ...@@ -3182,3 +3208,4 @@ AES_cfb1_encrypt 3610 EXIST::FUNCTION:AES
X509_STORE_CTX_set0_crls 3611 EXIST::FUNCTION: X509_STORE_CTX_set0_crls 3611 EXIST::FUNCTION:
v2i_ASN1_BIT_STRING 3612 EXIST::FUNCTION: v2i_ASN1_BIT_STRING 3612 EXIST::FUNCTION:
i2v_ASN1_BIT_STRING 3613 EXIST::FUNCTION: i2v_ASN1_BIT_STRING 3613 EXIST::FUNCTION:
EVP_CIPHER_CTX_rand_key 3614 EXIST::FUNCTION:
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册