]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fix some things the rename script didn't quite get right
authorMatt Caswell <matt@openssl.org>
Thu, 24 Sep 2020 09:56:03 +0000 (10:56 +0100)
committerMatt Caswell <matt@openssl.org>
Thu, 1 Oct 2020 08:25:20 +0000 (09:25 +0100)
The previous commit ran an automated rename throughout the codebase.
There are a small number of things it didn't quite get right so we fix
those in this commit.

Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/12970)

18 files changed:
crypto/x509/by_dir.c
crypto/x509/by_file.c
crypto/x509/x509_local.h
doc/man3/CTLOG_new.pod
doc/man3/EC_KEY_new.pod
doc/man3/EVP_VerifyInit.pod
doc/man3/NCONF_new_ex.pod [moved from doc/man3/NCONF_new_with_libctx.pod with 100% similarity]
doc/man3/PEM_X509_INFO_read_bio_ex.pod [moved from doc/man3/PEM_X509_INFO_read_bio_with_libctx.pod with 96% similarity]
doc/man3/X509_LOOKUP.pod
doc/man3/X509_STORE_add_cert.pod
doc/man3/X509_dup.pod
engines/e_loader_attic.c
include/openssl/x509_vfy.h.in
providers/implementations/keymgmt/ec_kmgmt.c
util/libcrypto.num
util/libssl.num
util/missingcrypto.txt
util/other.syms

index dd278981ef107c2922d18a952c2561b81e08ff0d..3f44d541cf17ce977efa9d370f062b105bed6f35 100644 (file)
@@ -61,7 +61,7 @@ static X509_LOOKUP_METHOD x509_dir_lookup = {
     NULL,                            /* get_by_issuer_serial */
     NULL,                            /* get_by_fingerprint */
     NULL,                            /* get_by_alias */
-    get_cert_by_subject_ex, /* get_by_subject_ex */
+    get_cert_by_subject_ex,          /* get_by_subject_ex */
     NULL,                            /* ctrl_ex */
 };
 
index 95223ea2af241ed39006ff95cfad21f04b988132..c5010c4e7e9f9292b3215cd5f0d56213a308b6b0 100644 (file)
@@ -36,7 +36,7 @@ static X509_LOOKUP_METHOD x509_file_lookup = {
     NULL,                       /* get_by_fingerprint */
     NULL,                       /* get_by_alias */
     NULL,                       /* get_by_subject_ex */
-    by_file_ctrl_ex,   /* ctrl_ex */
+    by_file_ctrl_ex,            /* ctrl_ex */
 };
 
 X509_LOOKUP_METHOD *X509_LOOKUP_file(void)
index bdd5bfcb71cf23cf7f46395c3ab55ae727e8bcd9..5d1f984aeaa7c976fb16b167afe7d36c4146967a 100644 (file)
@@ -91,11 +91,10 @@ struct x509_lookup_method_st {
     int (*get_by_alias) (X509_LOOKUP *ctx, X509_LOOKUP_TYPE type,
                          const char *str, int len, X509_OBJECT *ret);
     int (*get_by_subject_ex) (X509_LOOKUP *ctx, X509_LOOKUP_TYPE type,
-                                       const X509_NAME *name, X509_OBJECT *ret,
-                                       OPENSSL_CTX *libctx, const char *propq);
-    int (*ctrl_ex) (X509_LOOKUP *ctx, int cmd,
-                             const char *argc, long argl, char **ret,
-                             OPENSSL_CTX *libctx, const char *propq);
+                              const X509_NAME *name, X509_OBJECT *ret,
+                              OPENSSL_CTX *libctx, const char *propq);
+    int (*ctrl_ex) (X509_LOOKUP *ctx, int cmd, const char *argc, long argl,
+                    char **ret, OPENSSL_CTX *libctx, const char *propq);
 };
 
 /* This is the functions plus an instance of the local variables. */
index 227929c5b36e86af1b7473ef922a58405487bee1..edc4f7d6c3dbd12602bc9a43531467559f9ee493 100644 (file)
@@ -75,7 +75,7 @@ L<ct(7)>
 
 =head1 HISTORY
 
-The functions CTLOG_new_with_libctx() and CTLOG_new_from_base64_ex()
+The functions CTLOG_new_ex() and CTLOG_new_from_base64_ex()
 were added in OpenSSL 3.0. All other functions were added in OpenSSL 1.1.0.
 
 =head1 COPYRIGHT
index 97b29c60b11cfbb993f628e1e6c4e073b9088ecb..2af07227ea04131e6d4a0f0b5d10c3a48522ca6a 100644 (file)
@@ -177,7 +177,7 @@ EC_KEY_priv2buf() converts an EC_KEY private key into an allocated buffer.
 
 =head1 RETURN VALUES
 
-EC_KEY_new_with_libctx(), EC_KEY_new(), EC_KEY_new_by_curve_name_ex(),
+EC_KEY_new_ex(), EC_KEY_new(), EC_KEY_new_by_curve_name_ex(),
 EC_KEY_new_by_curve_name() and EC_KEY_dup() return a pointer to the newly
 created EC_KEY object, or NULL on error.
 
index b505af405d3ae1fa9baccb9f0626c8c72cfa5fd0..d98054bedb41ffaf37790ab5cea77b37beb730be 100644 (file)
@@ -49,7 +49,7 @@ implementation of digest I<type>.
 EVP_VerifyInit_ex() and EVP_VerifyUpdate() return 1 for success and 0 for
 failure.
 
-EVP_VerifyFinal()_ex() and EVP_VerifyFinal() return 1 for a correct
+EVP_VerifyFinal_ex() and EVP_VerifyFinal() return 1 for a correct
 signature, 0 for failure and -1 if some other error occurred.
 
 The error codes can be obtained by L<ERR_get_error(3)>.
similarity index 96%
rename from doc/man3/PEM_X509_INFO_read_bio_with_libctx.pod
rename to doc/man3/PEM_X509_INFO_read_bio_ex.pod
index 19f57b050a38355cfc48f53eba02000248fcb2d2..e8eb00aad014b7afa05390188387f049aa441573 100644 (file)
@@ -37,7 +37,7 @@ fetching algorithms from providers.
 
 =head1 RETURN VALUES
 
-PEM_X509_INFO_read_with_libctx() and PEM_X509_INFO_read_bio_ex() return
+PEM_X509_INFO_read_ex() and PEM_X509_INFO_read_bio_ex() return
 a stack of B<X509_INFO> objects or NULL on failure.
 
 =head1 SEE ALSO
index 6f464a1e0a877a6c32c59cc33e0447ff484dc755..69d6315ffebfd753d94328bd62458bb719dd6115 100644 (file)
@@ -223,7 +223,7 @@ The functions X509_LOOKUP_by_subject_ex() and
 X509_LOOKUP_ctrl_ex() were added in OpenSSL 3.0.
 
 The macros X509_LOOKUP_load_file_ex(),
-X509_LOOKUP_load_store_with_libctx() and 509_LOOKUP_add_store_ex() were
+X509_LOOKUP_load_store_ex() and 509_LOOKUP_add_store_ex() were
 added in OpenSSL 3.0.
 
 =head1 COPYRIGHT
index 7734d78a7bf64c1a8d3e2917f0eb4e181acc456f..5f16ee09b9741ab502f743ce7c95f72d59d14f84 100644 (file)
@@ -153,7 +153,7 @@ L<X509_STORE_get0_param(3)>
 =head1 HISTORY
 
 The functions X509_STORE_set_default_paths_ex(),
-X509_STORE_load_file_with_libctx(), X509_STORE_load_store_ex() and
+X509_STORE_load_file_ex(), X509_STORE_load_store_ex() and
 X509_STORE_load_locations_ex() were added in OpenSSL 3.0.
 
 =head1 COPYRIGHT
index 11bf24e7358c16887baba6c5418125e00987041b..d3e164a6e0f9c7f4c94c88658120e2f48dd5cf45 100644 (file)
@@ -361,7 +361,7 @@ B<I<TYPE>_print_ctx>() returns 1 on success or zero on failure.
 
 =head1 HISTORY
 
-The functions PKCS7_new_with_libctx() and CMS_ContentInfo_new_ex() were
+The functions PKCS7_new_ex() and CMS_ContentInfo_new_ex() were
 added in OpenSSL 3.0.
 
 =head1 COPYRIGHT
index 1bb2002d52ae1edac7c5563897de0ee4e8c2184b..97789f72932b89c9129acf56ccbc806381ba6e24 100644 (file)
@@ -1744,7 +1744,7 @@ static int bind_loader_attic(ENGINE *e)
 
     if (/* Create the OSSL_STORE_LOADER */
         (loader_attic = OSSL_STORE_LOADER_new(e, "file")) == NULL
-        || !OSSL_STORE_LOADER_set_open_ex(loader_attic, file_open_with_libctx)
+        || !OSSL_STORE_LOADER_set_open_ex(loader_attic, file_open_ex)
         || !OSSL_STORE_LOADER_set_open(loader_attic, file_open)
         || !OSSL_STORE_LOADER_set_attach(loader_attic, file_attach)
         || !OSSL_STORE_LOADER_set_ctrl(loader_attic, file_ctrl)
index 1cd7b70797fa7d503cf6c20050b91ebfd0ef47f7..b7da1b0c5c40b684a49b4c63b1ff20d51fd7fa85 100644 (file)
@@ -122,15 +122,15 @@ void X509_STORE_CTX_set_depth(X509_STORE_CTX *ctx, int depth);
 
 # define X509_LOOKUP_load_file_ex(x, name, type, libctx, propq)       \
 X509_LOOKUP_ctrl_ex((x), X509_L_FILE_LOAD, (name), (long)(type), NULL,\
-                             (libctx), (propq))
+                    (libctx), (propq))
 
 # define X509_LOOKUP_load_store_ex(x, name, libctx, propq)            \
 X509_LOOKUP_ctrl_ex((x), X509_L_LOAD_STORE, (name), 0, NULL,          \
-                             (libctx), (propq))
+                    (libctx), (propq))
 
 # define X509_LOOKUP_add_store_ex(x, name, libctx, propq)             \
 X509_LOOKUP_ctrl_ex((x), X509_L_ADD_STORE, (name), 0, NULL,           \
-                             (libctx), (propq))
+                    (libctx), (propq))
 
 # define X509_V_OK                                       0
 # define X509_V_ERR_UNSPECIFIED                          1
index b1019293b7f3d4aa19666f7902962e93e58c32a0..33d55288dd1b672e39099b072e9d7b0284da8c7d 100644 (file)
@@ -1094,7 +1094,7 @@ static void *sm2_gen(void *genctx, OSSL_CALLBACK *osslcb, void *cbarg)
     int ret = 1;
 
     if (gctx == NULL
-        || (ec = EC_KEY_new_with_libctx(gctx->libctx, NULL)) == NULL)
+        || (ec = EC_KEY_new_ex(gctx->libctx, NULL)) == NULL)
         return NULL;
 
     if (gctx->gen_group == NULL) {
index 7a0965ba726dbd78d079eefe033d77cb895b5e34..8e21348e3a6fabfdcdf5cee6e731d0f0f16399f1 100644 (file)
@@ -4910,8 +4910,8 @@ PKCS8_pkey_add1_attr_by_OBJ             ? 3_0_0   EXIST::FUNCTION:
 EVP_PKEY_private_check                  ?      3_0_0   EXIST::FUNCTION:
 EVP_PKEY_pairwise_check                 ?      3_0_0   EXIST::FUNCTION:
 ASN1_item_verify_ctx                    ?      3_0_0   EXIST::FUNCTION:
-ASN1_item_sign_with_libctx              ?      3_0_0   EXIST::FUNCTION:
-ASN1_item_verify_with_libctx            ?      3_0_0   EXIST::FUNCTION:
+ASN1_item_sign_ex                       ?      3_0_0   EXIST::FUNCTION:
+ASN1_item_verify_ex                     ?      3_0_0   EXIST::FUNCTION:
 BIO_socket_wait                         ?      3_0_0   EXIST::FUNCTION:SOCK
 BIO_wait                                ?      3_0_0   EXIST::FUNCTION:
 BIO_do_connect_retry                    ?      3_0_0   EXIST::FUNCTION:
@@ -4987,8 +4987,8 @@ EVP_PKEY_CTX_set_rsa_keygen_bits        ? 3_0_0   EXIST::FUNCTION:RSA
 EVP_PKEY_CTX_set_rsa_keygen_pubexp      ?      3_0_0   EXIST::FUNCTION:DEPRECATEDIN_3_0,RSA
 EVP_PKEY_CTX_set1_rsa_keygen_pubexp     ?      3_0_0   EXIST::FUNCTION:RSA
 EVP_PKEY_CTX_set_rsa_keygen_primes      ?      3_0_0   EXIST::FUNCTION:RSA
-NCONF_new_with_libctx                   ?      3_0_0   EXIST::FUNCTION:
-CONF_modules_load_file_with_libctx      ?      3_0_0   EXIST::FUNCTION:
+NCONF_new_ex                            ?      3_0_0   EXIST::FUNCTION:
+CONF_modules_load_file_ex               ?      3_0_0   EXIST::FUNCTION:
 OPENSSL_CTX_load_config                 ?      3_0_0   EXIST::FUNCTION:
 OSSL_PARAM_BLD_to_param                 ?      3_0_0   EXIST::FUNCTION:
 OSSL_PARAM_BLD_free_params              ?      3_0_0   EXIST::FUNCTION:
@@ -5029,11 +5029,11 @@ EVP_PKEY_get_octet_string_param         ?       3_0_0   EXIST::FUNCTION:
 EVP_PKEY_is_a                           ?      3_0_0   EXIST::FUNCTION:
 EVP_PKEY_can_sign                       ?      3_0_0   EXIST::FUNCTION:
 evp_pkey_get_EC_KEY_curve_nid           ?      3_0_0   EXIST::FUNCTION:EC
-X509_STORE_CTX_new_with_libctx          ?      3_0_0   EXIST::FUNCTION:
-CT_POLICY_EVAL_CTX_new_with_libctx      ?      3_0_0   EXIST::FUNCTION:CT
-CTLOG_new_with_libctx                   ?      3_0_0   EXIST::FUNCTION:CT
-CTLOG_new_from_base64_with_libctx       ?      3_0_0   EXIST::FUNCTION:CT
-CTLOG_STORE_new_with_libctx             ?      3_0_0   EXIST::FUNCTION:CT
+X509_STORE_CTX_new_ex                   ?      3_0_0   EXIST::FUNCTION:
+CT_POLICY_EVAL_CTX_new_ex               ?      3_0_0   EXIST::FUNCTION:CT
+CTLOG_new_ex                            ?      3_0_0   EXIST::FUNCTION:CT
+CTLOG_new_from_base64_ex                ?      3_0_0   EXIST::FUNCTION:CT
+CTLOG_STORE_new_ex                      ?      3_0_0   EXIST::FUNCTION:CT
 EVP_PKEY_set_ex_data                    ?      3_0_0   EXIST::FUNCTION:
 EVP_PKEY_get_ex_data                    ?      3_0_0   EXIST::FUNCTION:
 EVP_PKEY_CTX_set_group_name             ?      3_0_0   EXIST::FUNCTION:
@@ -5101,8 +5101,8 @@ EVP_RAND_strength                       ? 3_0_0   EXIST::FUNCTION:
 EVP_RAND_state                          ?      3_0_0   EXIST::FUNCTION:
 EVP_default_properties_is_fips_enabled  ?      3_0_0   EXIST::FUNCTION:
 EVP_default_properties_enable_fips      ?      3_0_0   EXIST::FUNCTION:
-EVP_PKEY_new_raw_private_key_with_libctx ?     3_0_0   EXIST::FUNCTION:
-EVP_PKEY_new_raw_public_key_with_libctx ?      3_0_0   EXIST::FUNCTION:
+EVP_PKEY_new_raw_private_key_ex         ?      3_0_0   EXIST::FUNCTION:
+EVP_PKEY_new_raw_public_key_ex          ?      3_0_0   EXIST::FUNCTION:
 OSSL_PARAM_BLD_push_time_t              ?      3_0_0   EXIST::FUNCTION:
 OSSL_PARAM_construct_time_t             ?      3_0_0   EXIST::FUNCTION:
 OSSL_PARAM_get_time_t                   ?      3_0_0   EXIST::FUNCTION:
@@ -5120,23 +5120,23 @@ EVP_PKEY_parameters_eq                  ?       3_0_0   EXIST::FUNCTION:
 OSSL_PROVIDER_query_operation           ?      3_0_0   EXIST::FUNCTION:
 OSSL_PROVIDER_get0_provider_ctx         ?      3_0_0   EXIST::FUNCTION:
 OSSL_PROVIDER_get_capabilities          ?      3_0_0   EXIST::FUNCTION:
-EC_GROUP_new_by_curve_name_with_libctx  ?      3_0_0   EXIST::FUNCTION:EC
-EC_KEY_new_with_libctx                  ?      3_0_0   EXIST::FUNCTION:EC
-EC_KEY_new_by_curve_name_with_libctx    ?      3_0_0   EXIST::FUNCTION:EC
+EC_GROUP_new_by_curve_name_ex           ?      3_0_0   EXIST::FUNCTION:EC
+EC_KEY_new_ex                           ?      3_0_0   EXIST::FUNCTION:EC
+EC_KEY_new_by_curve_name_ex             ?      3_0_0   EXIST::FUNCTION:EC
 OPENSSL_CTX_set0_default                ?      3_0_0   EXIST::FUNCTION:
-PEM_X509_INFO_read_bio_with_libctx      ?      3_0_0   EXIST::FUNCTION:
-PEM_X509_INFO_read_with_libctx          ?      3_0_0   EXIST::FUNCTION:STDIO
-X509_REQ_verify_with_libctx             ?      3_0_0   EXIST::FUNCTION:
-X509_new_with_libctx                    ?      3_0_0   EXIST::FUNCTION:
-X509_LOOKUP_ctrl_with_libctx            ?      3_0_0   EXIST::FUNCTION:
-X509_load_cert_file_with_libctx         ?      3_0_0   EXIST::FUNCTION:
-X509_load_cert_crl_file_with_libctx     ?      3_0_0   EXIST::FUNCTION:
-X509_LOOKUP_by_subject_with_libctx      ?      3_0_0   EXIST::FUNCTION:
-X509_STORE_load_file_with_libctx        ?      3_0_0   EXIST::FUNCTION:
-X509_STORE_load_store_with_libctx       ?      3_0_0   EXIST::FUNCTION:
-X509_STORE_load_locations_with_libctx   ?      3_0_0   EXIST::FUNCTION:
-X509_STORE_set_default_paths_with_libctx ?     3_0_0   EXIST::FUNCTION:
-OSSL_STORE_open_with_libctx             ?      3_0_0   EXIST::FUNCTION:
+PEM_X509_INFO_read_bio_ex               ?      3_0_0   EXIST::FUNCTION:
+PEM_X509_INFO_read_ex                   ?      3_0_0   EXIST::FUNCTION:STDIO
+X509_REQ_verify_ex                      ?      3_0_0   EXIST::FUNCTION:
+X509_new_ex                             ?      3_0_0   EXIST::FUNCTION:
+X509_LOOKUP_ctrl_ex                     ?      3_0_0   EXIST::FUNCTION:
+X509_load_cert_file_ex                  ?      3_0_0   EXIST::FUNCTION:
+X509_load_cert_crl_file_ex              ?      3_0_0   EXIST::FUNCTION:
+X509_LOOKUP_by_subject_ex               ?      3_0_0   EXIST::FUNCTION:
+X509_STORE_load_file_ex                 ?      3_0_0   EXIST::FUNCTION:
+X509_STORE_load_store_ex                ?      3_0_0   EXIST::FUNCTION:
+X509_STORE_load_locations_ex            ?      3_0_0   EXIST::FUNCTION:
+X509_STORE_set_default_paths_ex         ?      3_0_0   EXIST::FUNCTION:
+OSSL_STORE_open_ex                      ?      3_0_0   EXIST::FUNCTION:
 OSSL_DECODER_fetch                      ?      3_0_0   EXIST::FUNCTION:
 OSSL_DECODER_up_ref                     ?      3_0_0   EXIST::FUNCTION:
 OSSL_DECODER_free                       ?      3_0_0   EXIST::FUNCTION:
@@ -5181,24 +5181,24 @@ PKCS12_SAFEBAG_create_secret            ?       3_0_0   EXIST::FUNCTION:
 PKCS12_add1_attr_by_NID                 ?      3_0_0   EXIST::FUNCTION:
 PKCS12_add1_attr_by_txt                 ?      3_0_0   EXIST::FUNCTION:
 PKCS12_add_secret                       ?      3_0_0   EXIST::FUNCTION:
-SMIME_write_ASN1_with_libctx            ?      3_0_0   EXIST::FUNCTION:
+SMIME_write_ASN1_ex                     ?      3_0_0   EXIST::FUNCTION:
 SMIME_read_ASN1_ex                      ?      3_0_0   EXIST::FUNCTION:
-CMS_ContentInfo_new_with_libctx         ?      3_0_0   EXIST::FUNCTION:CMS
+CMS_ContentInfo_new_ex                  ?      3_0_0   EXIST::FUNCTION:CMS
 SMIME_read_CMS_ex                       ?      3_0_0   EXIST::FUNCTION:CMS
-CMS_sign_with_libctx                    ?      3_0_0   EXIST::FUNCTION:CMS
-CMS_data_create_with_libctx             ?      3_0_0   EXIST::FUNCTION:CMS
-CMS_digest_create_with_libctx           ?      3_0_0   EXIST::FUNCTION:CMS
-CMS_EncryptedData_encrypt_with_libctx   ?      3_0_0   EXIST::FUNCTION:CMS
-CMS_encrypt_with_libctx                 ?      3_0_0   EXIST::FUNCTION:CMS
-CMS_EnvelopedData_create_with_libctx    ?      3_0_0   EXIST::FUNCTION:CMS
-CMS_ReceiptRequest_create0_with_libctx  ?      3_0_0   EXIST::FUNCTION:CMS
-EVP_SignFinal_with_libctx               ?      3_0_0   EXIST::FUNCTION:
-EVP_VerifyFinal_with_libctx             ?      3_0_0   EXIST::FUNCTION:
-EVP_DigestSignInit_with_libctx          ?      3_0_0   EXIST::FUNCTION:
-EVP_DigestVerifyInit_with_libctx        ?      3_0_0   EXIST::FUNCTION:
-PKCS7_new_with_libctx                   ?      3_0_0   EXIST::FUNCTION:
-PKCS7_sign_with_libctx                  ?      3_0_0   EXIST::FUNCTION:
-PKCS7_encrypt_with_libctx               ?      3_0_0   EXIST::FUNCTION:
+CMS_sign_ex                             ?      3_0_0   EXIST::FUNCTION:CMS
+CMS_data_create_ex                      ?      3_0_0   EXIST::FUNCTION:CMS
+CMS_digest_create_ex                    ?      3_0_0   EXIST::FUNCTION:CMS
+CMS_EncryptedData_encrypt_ex            ?      3_0_0   EXIST::FUNCTION:CMS
+CMS_encrypt_ex                          ?      3_0_0   EXIST::FUNCTION:CMS
+CMS_EnvelopedData_create_ex             ?      3_0_0   EXIST::FUNCTION:CMS
+CMS_ReceiptRequest_create0_ex           ?      3_0_0   EXIST::FUNCTION:CMS
+EVP_SignFinal_ex                        ?      3_0_0   EXIST::FUNCTION:
+EVP_VerifyFinal_ex                      ?      3_0_0   EXIST::FUNCTION:
+EVP_DigestSignInit_ex                   ?      3_0_0   EXIST::FUNCTION:
+EVP_DigestVerifyInit_ex                 ?      3_0_0   EXIST::FUNCTION:
+PKCS7_new_ex                            ?      3_0_0   EXIST::FUNCTION:
+PKCS7_sign_ex                           ?      3_0_0   EXIST::FUNCTION:
+PKCS7_encrypt_ex                        ?      3_0_0   EXIST::FUNCTION:
 SMIME_read_PKCS7_ex                     ?      3_0_0   EXIST::FUNCTION:
 OSSL_PROVIDER_self_test                 ?      3_0_0   EXIST::FUNCTION:
 EVP_PKEY_CTX_set_tls1_prf_md            ?      3_0_0   EXIST::FUNCTION:
@@ -5242,7 +5242,7 @@ PEM_read_bio_PUBKEY_ex                  ? 3_0_0   EXIST::FUNCTION:
 PEM_read_PUBKEY_ex                      ?      3_0_0   EXIST::FUNCTION:STDIO
 PEM_read_bio_Parameters_ex              ?      3_0_0   EXIST::FUNCTION:
 EC_GROUP_new_from_params                ?      3_0_0   EXIST::FUNCTION:EC
-OSSL_STORE_LOADER_set_open_with_libctx  ?      3_0_0   EXIST::FUNCTION:DEPRECATEDIN_3_0
+OSSL_STORE_LOADER_set_open_ex           ?      3_0_0   EXIST::FUNCTION:DEPRECATEDIN_3_0
 OSSL_STORE_LOADER_fetch                 ?      3_0_0   EXIST::FUNCTION:
 OSSL_STORE_LOADER_up_ref                ?      3_0_0   EXIST::FUNCTION:
 OSSL_STORE_LOADER_provider              ?      3_0_0   EXIST::FUNCTION:
@@ -5255,20 +5255,20 @@ OSSL_PARAM_get_utf8_string_ptr          ?       3_0_0   EXIST::FUNCTION:
 OSSL_PARAM_get_octet_string_ptr         ?      3_0_0   EXIST::FUNCTION:
 OSSL_DECODER_CTX_set_passphrase_cb      ?      3_0_0   EXIST::FUNCTION:
 EVP_PKEY_CTX_set_mac_key                ?      3_0_0   EXIST::FUNCTION:
-EVP_PKEY_new_CMAC_key_with_libctx       ?      3_0_0   EXIST::FUNCTION:
+EVP_PKEY_new_CMAC_key_ex                ?      3_0_0   EXIST::FUNCTION:
 OSSL_STORE_INFO_new                     ?      3_0_0   EXIST::FUNCTION:
 OSSL_STORE_INFO_get0_data               ?      3_0_0   EXIST::FUNCTION:
 ossl_do_blob_header                     ?      3_0_0   EXIST::FUNCTION:DSA
 ossl_do_PVK_header                      ?      3_0_0   EXIST::FUNCTION:DSA,RC4
 asn1_d2i_read_bio                       ?      3_0_0   EXIST::FUNCTION:
-EVP_PKCS82PKEY_with_libctx              ?      3_0_0   EXIST::FUNCTION:
+EVP_PKCS82PKEY_ex                       ?      3_0_0   EXIST::FUNCTION:
 ossl_b2i                                ?      3_0_0   EXIST::FUNCTION:DSA
 ossl_b2i_bio                            ?      3_0_0   EXIST::FUNCTION:DSA
 EVP_PKEY_CTX_set1_id                    ?      3_0_0   EXIST::FUNCTION:
 EVP_PKEY_CTX_get1_id                    ?      3_0_0   EXIST::FUNCTION:
 EVP_PKEY_CTX_get1_id_len                ?      3_0_0   EXIST::FUNCTION:
 CMS_AuthEnvelopedData_create            ?      3_0_0   EXIST::FUNCTION:CMS
-CMS_AuthEnvelopedData_create_with_libctx ?     3_0_0   EXIST::FUNCTION:CMS
+CMS_AuthEnvelopedData_create_ex         ?      3_0_0   EXIST::FUNCTION:CMS
 EVP_PKEY_CTX_set_ec_param_enc           ?      3_0_0   EXIST::FUNCTION:EC
 EVP_PKEY_get0_first_alg_name            ?      3_0_0   EXIST::FUNCTION:
 EVP_KEYMGMT_get0_first_name             ?      3_0_0   EXIST::FUNCTION:
index 45ff6ed00a7b74e81cb524477acb733279912c2b..193be1b7a184ae8e9ac6a8feae4b1e70f4ae4c97 100644 (file)
@@ -512,8 +512,8 @@ SSL_CTX_load_verify_file                ?   3_0_0   EXIST::FUNCTION:
 SSL_CTX_load_verify_dir                 ?      3_0_0   EXIST::FUNCTION:
 SSL_CTX_load_verify_store               ?      3_0_0   EXIST::FUNCTION:
 SSL_CTX_set_tlsext_ticket_key_evp_cb    ?      3_0_0   EXIST::FUNCTION:
-SSL_CTX_new_with_libctx                 ?      3_0_0   EXIST::FUNCTION:
+SSL_CTX_new_ex                          ?      3_0_0   EXIST::FUNCTION:
 SSL_new_session_ticket                  ?      3_0_0   EXIST::FUNCTION:
 SSL_get0_peer_certificate               ?      3_0_0   EXIST::FUNCTION:
 SSL_get1_peer_certificate               ?      3_0_0   EXIST::FUNCTION:
-SSL_load_client_CA_file_with_libctx     ?      3_0_0   EXIST::FUNCTION:
+SSL_load_client_CA_file_ex              ?      3_0_0   EXIST::FUNCTION:
index 783df1203f6552ee286e9b2add0a60f5beaadf1e..481331e261c7ca227aa184b34fa015314bcf2108 100644 (file)
@@ -156,11 +156,11 @@ ASN1_item_pack(3)
 ASN1_item_print(3)
 ASN1_item_sign(3)
 ASN1_item_sign_ctx(3)
-ASN1_item_sign_with_libctx(3)
+ASN1_item_sign_ex(3)
 ASN1_item_unpack(3)
 ASN1_item_verify(3)
 ASN1_item_verify_ctx(3)
-ASN1_item_verify_with_libctx(3)
+ASN1_item_verify_ex(3)
 ASN1_mbstring_copy(3)
 ASN1_mbstring_ncopy(3)
 ASN1_object_size(3)
@@ -673,7 +673,7 @@ EVP_PBE_find(3)
 EVP_PBE_get(3)
 EVP_PBE_scrypt(3)
 EVP_PKCS82PKEY(3)
-EVP_PKCS82PKEY_with_libctx(3)
+EVP_PKCS82PKEY_ex(3)
 EVP_PKEY2PKCS8(3)
 EVP_PKEY_CTX_get0_peerkey(3)
 EVP_PKEY_CTX_get0_pkey(3)
index 395b4751597f519b280b2c9c3cc0308c52365ca8..d4c552e2989e1e0f1b5bde5e56177aeac1a4dd10 100644 (file)
@@ -68,7 +68,7 @@ OSSL_STORE_eof_fn                       datatype
 OSSL_STORE_error_fn                     datatype
 OSSL_STORE_load_fn                      datatype
 OSSL_STORE_open_fn                      datatype
-OSSL_STORE_open_with_libctx_fn          datatype
+OSSL_STORE_open_ex_fn                   datatype
 OSSL_STORE_post_process_info_fn         datatype
 OSSL_trace_cb                           datatype
 PROFESSION_INFO                         datatype
@@ -580,11 +580,11 @@ X509_CRL_http_nbio                      define
 X509_http_nbio                          define
 X509_LOOKUP_add_dir                     define
 X509_LOOKUP_add_store                   define
-X509_LOOKUP_add_store_with_libctx       define
+X509_LOOKUP_add_store_ex                define
 X509_LOOKUP_load_file                   define
-X509_LOOKUP_load_file_with_libctx       define
+X509_LOOKUP_load_file_ex                define
 X509_LOOKUP_load_store                  define
-X509_LOOKUP_load_store_with_libctx      define
+X509_LOOKUP_load_store_ex               define
 X509_STORE_set_lookup_crls_cb           define
 X509_STORE_set_verify_func              define
 EVP_PKEY_CTX_set1_id                    define