diff options
author | Matt Caswell <matt@openssl.org> | 2020-10-12 18:12:03 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2020-10-15 11:00:28 +0200 |
commit | 29000e43ea257bf54f6ccb2064b3744853b821b2 (patch) | |
tree | 37790003f0f3683ec8cc8836499afb2844b90fa9 /include/crypto | |
parent | Remove some more CMS key downgrades (diff) | |
download | openssl-29000e43ea257bf54f6ccb2064b3744853b821b2.tar.xz openssl-29000e43ea257bf54f6ccb2064b3744853b821b2.zip |
Make evp_pkey_ctx_get0_libctx/propq public API
These were previously added as an internal API. But since the CMS code
needs them, other code might do too.
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/13088)
Diffstat (limited to 'include/crypto')
-rw-r--r-- | include/crypto/evp.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/crypto/evp.h b/include/crypto/evp.h index 86b85960e7..ac20b5b512 100644 --- a/include/crypto/evp.h +++ b/include/crypto/evp.h @@ -835,8 +835,6 @@ int evp_pkey_ctx_get1_id_len_prov(EVP_PKEY_CTX *ctx, size_t *id_len); int evp_pkey_ctx_use_cached_data(EVP_PKEY_CTX *ctx); #endif /* !defined(FIPS_MODULE) */ -OPENSSL_CTX *evp_pkey_ctx_get0_libctx(EVP_PKEY_CTX *ctx); -const char *evp_pkey_ctx_get0_propq(EVP_PKEY_CTX *ctx); void evp_method_store_flush(OPENSSL_CTX *libctx); int evp_set_default_properties_int(OPENSSL_CTX *libctx, const char *propq, int loadconfig); |