summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJon Spillett <jon.spillett@oracle.com>2021-05-18 13:37:35 +1000
committerTomas Mraz <tomas@openssl.org>2021-06-01 12:16:27 +0200
commit5e2d22d53ed322a7124e26a4fbd116a8210eb77a (patch)
tree8e78bfa8dfd5d923244f4e995d2de7ebbdccc089 /include
parente3c7595521c88579b9eaf02fc11025a2ecdb6ad5 (diff)
Pass library context and property query into private key decoders
Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14587)
Diffstat (limited to 'include')
-rw-r--r--include/crypto/pem.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/crypto/pem.h b/include/crypto/pem.h
index 2a0e6424a5..840dc18f06 100644
--- a/include/crypto/pem.h
+++ b/include/crypto/pem.h
@@ -40,8 +40,12 @@ EVP_PKEY *ossl_b2i_bio(BIO *in, int *ispub);
# ifndef OPENSSL_NO_DEPRECATED_3_0
# ifndef OPENSSL_NO_DSA
DSA *b2i_DSA_PVK_bio(BIO *in, pem_password_cb *cb, void *u);
+DSA *b2i_DSA_PVK_bio_ex(BIO *in, pem_password_cb *cb, void *u,
+ OSSL_LIB_CTX *libctx, const char *propq);
# endif
RSA *b2i_RSA_PVK_bio(BIO *in, pem_password_cb *cb, void *u);
+RSA *b2i_RSA_PVK_bio_ex(BIO *in, pem_password_cb *cb, void *u,
+ OSSL_LIB_CTX *libctx, const char *propq);
# endif
#endif