mirror of
https://github.com/openssl/openssl.git
synced 2025-02-17 14:32:04 +08:00
EVP_get_default_properties - implementation
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/25434)
This commit is contained in:
parent
0fdf965bf0
commit
54fb2fd013
@ -581,6 +581,11 @@ char *evp_get_global_properties_str(OSSL_LIB_CTX *libctx, int loadconfig)
|
||||
return propstr;
|
||||
}
|
||||
|
||||
char *EVP_get1_default_properties(OSSL_LIB_CTX *libctx)
|
||||
{
|
||||
return evp_get_global_properties_str(libctx, ossl_lib_ctx_is_global_default(libctx));
|
||||
}
|
||||
|
||||
struct filter_data_st {
|
||||
int operation_id;
|
||||
void (*user_fn)(void *method, void *arg);
|
||||
|
@ -98,6 +98,7 @@ extern "C" {
|
||||
#endif
|
||||
|
||||
int EVP_set_default_properties(OSSL_LIB_CTX *libctx, const char *propq);
|
||||
char *EVP_get1_default_properties(OSSL_LIB_CTX *libctx);
|
||||
int EVP_default_properties_is_fips_enabled(OSSL_LIB_CTX *libctx);
|
||||
int EVP_default_properties_enable_fips(OSSL_LIB_CTX *libctx, int enable);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user