aboutsummaryrefslogtreecommitdiff
path: root/test/ideatest.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 /test/ideatest.c
parent621f74b3e3eeaa189c9d83dca7352612774ad23c (diff)
downloadopenssl-da2d32f6db1c9fb33478af660daddcd1df369716.zip
openssl-da2d32f6db1c9fb33478af660daddcd1df369716.tar.gz
openssl-da2d32f6db1c9fb33478af660daddcd1df369716.tar.bz2
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 'test/ideatest.c')
-rw-r--r--test/ideatest.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/ideatest.c b/test/ideatest.c
index e572984..2ef5a49 100644
--- a/test/ideatest.c
+++ b/test/ideatest.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 <string.h>
#include "internal/nelem.h"