summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2021-03-01 16:55:23 +0100
committerTomas Mraz <tomas@openssl.org>2021-03-04 14:15:01 +0100
commit946bdd12a0b366d9d558ec8088f89124bbe42cc3 (patch)
tree82b5dff534bc109f3fcb88f15b046f03262e4ea9 /include
parent9522f0a6a9c49d650c773f089ed84b0c1ee0368b (diff)
include/crypto: Remove TODOs that are irrelevant for 3.0
The legacy support will not be removed in 3.0. Remove the related TODO 3.0 marks. Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14404)
Diffstat (limited to 'include')
-rw-r--r--include/crypto/evp.h6
-rw-r--r--include/crypto/modes.h2
2 files changed, 3 insertions, 5 deletions
diff --git a/include/crypto/evp.h b/include/crypto/evp.h
index 9115f47c1f..41487d2af2 100644
--- a/include/crypto/evp.h
+++ b/include/crypto/evp.h
@@ -235,7 +235,6 @@ struct evp_md_st {
int type;
/* Legacy structure members */
- /* TODO(3.0): Remove these */
int pkey_type;
int md_size;
unsigned long flags;
@@ -250,7 +249,7 @@ struct evp_md_st {
int (*md_ctrl) (EVP_MD_CTX *ctx, int cmd, int p1, void *p2);
/* New structure members */
- /* TODO(3.0): Remove above comment when legacy has gone */
+ /* Above comment to be removed when legacy has gone */
int name_id;
OSSL_PROVIDER *prov;
CRYPTO_REF_COUNT refcnt;
@@ -280,7 +279,6 @@ struct evp_cipher_st {
int iv_len;
/* Legacy structure members */
- /* TODO(3.0): Remove these */
/* Various flags */
unsigned long flags;
/* init key */
@@ -303,7 +301,7 @@ struct evp_cipher_st {
void *app_data;
/* New structure members */
- /* TODO(3.0): Remove above comment when legacy has gone */
+ /* Above comment to be removed when legacy has gone */
int name_id;
OSSL_PROVIDER *prov;
CRYPTO_REF_COUNT refcnt;
diff --git a/include/crypto/modes.h b/include/crypto/modes.h
index f5397fca68..119314d172 100644
--- a/include/crypto/modes.h
+++ b/include/crypto/modes.h
@@ -7,7 +7,7 @@
* https://www.openssl.org/source/license.html
*/
-/* TODO(3.0) Move this header into provider when dependencies are removed */
+/* This header can move into provider when legacy support is removed */
#include <openssl/modes.h>
#if (defined(_WIN32) || defined(_WIN64)) && !defined(__MINGW32__)