mirror of
https://github.com/QuasarApp/openssl.git
synced 2025-05-09 07:59:44 +00:00
Fix some things the rename script didn't quite get right
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)
This commit is contained in:
parent
d8652be06e
commit
746f367489
crypto/x509
doc/man3
CTLOG_new.podEC_KEY_new.podEVP_VerifyInit.podNCONF_new_ex.podPEM_X509_INFO_read_bio_ex.podX509_LOOKUP.podX509_STORE_add_cert.podX509_dup.pod
engines
include/openssl
providers/implementations/keymgmt
util
@ -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 */
|
||||
};
|
||||
|
||||
|
@ -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)
|
||||
|
@ -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. */
|
||||
|
@ -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
|
||||
|
@ -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.
|
||||
|
||||
|
@ -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)>.
|
||||
|
@ -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
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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)
|
||||
|
@ -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
|
||||
|
@ -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) {
|
||||
|
@ -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:
|
||||
|
@ -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:
|
||||
|
@ -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)
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user