diff options
author | Richard Levitte <levitte@openssl.org> | 2019-07-10 22:24:00 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2019-07-23 06:34:09 +0200 |
commit | c750bc08516f1273751ba03fa533e3eb2418b92d (patch) | |
tree | 8bd24cd14dd73d9443150ccd63bb954861245ed7 /util | |
parent | Add a mechnism to save the name of fetched methods (diff) | |
download | openssl-c750bc08516f1273751ba03fa533e3eb2418b92d.tar.xz openssl-c750bc08516f1273751ba03fa533e3eb2418b92d.zip |
Re-implement EVP_MD_name() and EVP_CIPHER_name() as functions
They will do the same as usual for non-provider algorithms
implementations, but can handle provider implementations as well.
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/9356)
Diffstat (limited to 'util')
-rw-r--r-- | util/libcrypto.num | 2 | ||||
-rw-r--r-- | util/private.num | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/util/libcrypto.num b/util/libcrypto.num index e18fdca5b7..e9e5cfdca1 100644 --- a/util/libcrypto.num +++ b/util/libcrypto.num @@ -4691,3 +4691,5 @@ EVP_KEYMGMT_free 4796 3_0_0 EXIST::FUNCTION: EVP_KEYMGMT_provider 4797 3_0_0 EXIST::FUNCTION: X509_PUBKEY_dup 4798 3_0_0 EXIST::FUNCTION: ERR_put_func_error 4799 3_0_0 EXIST::FUNCTION: +EVP_MD_name 4800 3_0_0 EXIST::FUNCTION: +EVP_CIPHER_name 4801 3_0_0 EXIST::FUNCTION: diff --git a/util/private.num b/util/private.num index 3307e3e239..1e76dfb43c 100644 --- a/util/private.num +++ b/util/private.num @@ -201,6 +201,7 @@ EVP_DigestVerifyUpdate define EVP_KDF_name define EVP_MAC_name define EVP_MD_CTX_block_size define +EVP_MD_CTX_name define EVP_MD_CTX_size define EVP_MD_CTX_type define EVP_OpenUpdate define |