summaryrefslogtreecommitdiffstats
path: root/crypto/idea/i_cbc.c
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2020-01-13 13:02:45 +1000
committerPauli <paul.dale@oracle.com>2020-01-19 10:38:49 +1000
commitda2d32f6db1c9fb33478af660daddcd1df369716 (patch)
treee35e8b89a18319fd8444d16a4fe5adad216fb8bc /crypto/idea/i_cbc.c
parent621f74b3e3eeaa189c9d83dca7352612774ad23c (diff)
Deprecate the low level IDEA functions.
Use of the low level IDEA functions has been informally discouraged for a long time. We now formally deprecate them. Applications should instead use the EVP APIs, e.g. EVP_EncryptInit_ex, EVP_EncryptUpdate, EVP_EncryptFinal_ex, and the equivalently named decrypt functions. Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/10819)
Diffstat (limited to 'crypto/idea/i_cbc.c')
-rw-r--r--crypto/idea/i_cbc.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/crypto/idea/i_cbc.c b/crypto/idea/i_cbc.c
index a78841fcfc..987ba05ea1 100644
--- a/crypto/idea/i_cbc.c
+++ b/crypto/idea/i_cbc.c
@@ -7,6 +7,13 @@
* https://www.openssl.org/source/license.html
*/
+/*
+ * IDEA low level APIs are deprecated for public use, but still ok for internal
+ * use where we're using them to implement the higher level EVP interface, as is
+ * the case here.
+ */
+#include "internal/deprecated.h"
+
#include <openssl/idea.h>
#include "idea_local.h"