diff options
author | Matt Caswell <matt@openssl.org> | 2021-05-21 16:50:09 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2021-06-05 09:39:10 +0200 |
commit | d6ded941c94803adf090f17093c8ff905f259ca8 (patch) | |
tree | 4473beee1adb9b5624093e6b05b98e171cb1e3df /include | |
parent | Test a bad SmtpUTF8Mailbox name constraint (diff) | |
download | openssl-d6ded941c94803adf090f17093c8ff905f259ca8.tar.xz openssl-d6ded941c94803adf090f17093c8ff905f259ca8.zip |
Provide the ability to create an X509_PUBKEY with a libctx/propq
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15591)
Diffstat (limited to 'include')
-rw-r--r-- | include/openssl/x509.h.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/openssl/x509.h.in b/include/openssl/x509.h.in index d5d3cdb719..38c7b42c22 100644 --- a/include/openssl/x509.h.in +++ b/include/openssl/x509.h.in @@ -550,6 +550,7 @@ DECLARE_ASN1_FUNCTIONS(X509_VAL) DECLARE_ASN1_FUNCTIONS(X509_PUBKEY) +X509_PUBKEY *X509_PUBKEY_new_ex(OSSL_LIB_CTX *libctx, const char *propq); int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey); EVP_PKEY *X509_PUBKEY_get0(const X509_PUBKEY *key); EVP_PKEY *X509_PUBKEY_get(const X509_PUBKEY *key); |