aboutsummaryrefslogtreecommitdiff
path: root/test/rc2test.c
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2020-01-14 09:15:18 +1000
committerPauli <paul.dale@oracle.com>2020-01-16 07:07:27 +1000
commitee2993abd0830ec27a2dd49e07db8d0eb5f3e579 (patch)
tree9c789bbe5b362cc30edaacac00ca8acd21c58f69 /test/rc2test.c
parent49742fd412665d2211523ac2925640e3be9d9ab3 (diff)
downloadopenssl-ee2993abd0830ec27a2dd49e07db8d0eb5f3e579.zip
openssl-ee2993abd0830ec27a2dd49e07db8d0eb5f3e579.tar.gz
openssl-ee2993abd0830ec27a2dd49e07db8d0eb5f3e579.tar.bz2
Deprecate the low level RC2 functions
Use of the low level RC2 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: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/10834)
Diffstat (limited to 'test/rc2test.c')
-rw-r--r--test/rc2test.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/rc2test.c b/test/rc2test.c
index 9ebc9ec..7b96509 100644
--- a/test/rc2test.c
+++ b/test/rc2test.c
@@ -7,6 +7,12 @@
* https://www.openssl.org/source/license.html
*/
+/*
+ * RC2 low level APIs are deprecated for public use, but still ok for internal
+ * use.
+ */
+#include "internal/deprecated.h"
+
#include "internal/nelem.h"
#include "testutil.h"