diff options
author | Matt Caswell <matt@openssl.org> | 2021-02-05 12:28:15 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2021-02-12 09:47:32 +0100 |
commit | 6d2a1eff553b0bd463cce008a25506d89280679f (patch) | |
tree | e2e8ba77a7f631a896e84244007caa30aa2aea23 /test/srptest.c | |
parent | Add OID for draft-ietf-opsawg-finding-geofeeds detached CMS signature (diff) | |
download | openssl-6d2a1eff553b0bd463cce008a25506d89280679f.tar.xz openssl-6d2a1eff553b0bd463cce008a25506d89280679f.zip |
Deprecate the low level SRP APIs
The OTC decided that all low level APIs should be deprecated. This extends
to SRP, even though at the current time there is no "EVP" interface to it.
This could be added in a future release.
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14132)
Diffstat (limited to 'test/srptest.c')
-rw-r--r-- | test/srptest.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/srptest.c b/test/srptest.c index 6a615a43d3..ac42094d65 100644 --- a/test/srptest.c +++ b/test/srptest.c @@ -7,6 +7,12 @@ * https://www.openssl.org/source/license.html */ +/* + * SRP is deprecated, so we're going to have to use some deprecated APIs in + * order to test it. + */ +#define OPENSSL_SUPPRESS_DEPRECATED + #include <openssl/opensslconf.h> # include "testutil.h" |