summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2019-09-14 16:35:08 +0200
committerRichard Levitte <levitte@openssl.org>2019-09-19 14:58:17 +0200
commit7cfa1717b812a126ce6f8e4cc32139164c89d789 (patch)
tree6baeb081c8d404bb4e82cabe0d42b5c78a356e19 /util
parentf7c16d48a945e80f22f6f02550ee3fe14edb52fa (diff)
Modify providers that keep track of underlying algorithms
With some provider implementations, there are underlying ciphers, digests and macs. For some of them, the name was retrieved from the method, but since the methods do not store those any more, we add different mechanics. For code that needs to pass on the name of a cipher or diges via parameters, we simply locally store the name that was used when fetching said cipher or digest. This will ensure that any underlying code that needs to fetch that same cipher or digest does so with the exact same name instead of any random name from the set of names associated with the algorithm. For code that needs to check what kind of algorithm was passed, we provide EVP_{type}_is_a(), that returns true if the given method has the given name as one of its names. Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9897)
Diffstat (limited to 'util')
-rw-r--r--util/libcrypto.num2
1 files changed, 2 insertions, 0 deletions
diff --git a/util/libcrypto.num b/util/libcrypto.num
index 71e650e933..1b14b440dc 100644
--- a/util/libcrypto.num
+++ b/util/libcrypto.num
@@ -4762,3 +4762,5 @@ ERR_peek_error_all 4878 3_0_0 EXIST::FUNCTION:
ERR_peek_last_error_func 4879 3_0_0 EXIST::FUNCTION:
ERR_peek_last_error_data 4880 3_0_0 EXIST::FUNCTION:
ERR_peek_last_error_all 4881 3_0_0 EXIST::FUNCTION:
+EVP_CIPHER_is_a 4882 3_0_0 EXIST::FUNCTION:
+EVP_MAC_is_a 4883 3_0_0 EXIST::FUNCTION: