diff options
author | Pauli <paul.dale@oracle.com> | 2020-01-14 00:38:09 +0100 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2020-01-15 22:07:27 +0100 |
commit | a8fca7284a98ca58804e17ade92fadd7a62056ae (patch) | |
tree | 772f41a9e4b5058da12f0a0df765d75314519131 /test/rc4test.c | |
parent | rc4: fix preprocessor indentation (diff) | |
download | openssl-a8fca7284a98ca58804e17ade92fadd7a62056ae.tar.xz openssl-a8fca7284a98ca58804e17ade92fadd7a62056ae.zip |
Deprecate the low level RC4 functions
Use of the low level RC4 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/rc4test.c')
-rw-r--r-- | test/rc4test.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/rc4test.c b/test/rc4test.c index 34ec2e016e..ed0bef5006 100644 --- a/test/rc4test.c +++ b/test/rc4test.c @@ -7,6 +7,12 @@ * https://www.openssl.org/source/license.html */ +/* + * RC4 low level APIs are deprecated for public use, but still ok for internal + * use. + */ +#include "internal/deprecated.h" + #include <string.h> #include "internal/nelem.h" |