diff options
author | Matt Caswell <matt@openssl.org> | 2021-04-15 17:32:45 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2021-04-19 11:45:20 +0200 |
commit | 145a4c871d9632a6eb2145f8a2b417bec58e7ee5 (patch) | |
tree | 6725611dc2130559f6c9ba548b4083716fadbbf8 /crypto | |
parent | Don't worry about magic in the Makefile for 3.0 (diff) | |
download | openssl-145a4c871d9632a6eb2145f8a2b417bec58e7ee5.tar.xz openssl-145a4c871d9632a6eb2145f8a2b417bec58e7ee5.zip |
Remove a TODO(3.0) from keymgmt_lib.c
The TODO suggest a possible refactoring. The refactoring doesn't seem
necessary at this stage. If it is required later it can be done without
affecting external APIs - so just remove the TODO.
Fixes #14397
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14888)
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/evp/keymgmt_lib.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/crypto/evp/keymgmt_lib.c b/crypto/evp/keymgmt_lib.c index f196bc4d88..f3118a76c9 100644 --- a/crypto/evp/keymgmt_lib.c +++ b/crypto/evp/keymgmt_lib.c @@ -123,10 +123,6 @@ void *evp_keymgmt_util_export_to_provider(EVP_PKEY *pk, EVP_KEYMGMT *keymgmt) CRYPTO_THREAD_unlock(pk->lock); /* If the "origin" |keymgmt| doesn't support exporting, give up */ - /* - * TODO(3.0) consider an evp_keymgmt_export() return value that indicates - * that the method is unsupported. - */ if (pk->keymgmt->export == NULL) return NULL; |