diff options
author | Pauli <paul.dale@oracle.com> | 2020-01-28 06:14:18 +0100 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2020-02-04 11:02:55 +0100 |
commit | 579422c85cf606c0ae1d4baf414010dc21da657a (patch) | |
tree | de91afc5811afe2f3f9970afedbae4bafc0ca27b /crypto/ec/curve25519.c | |
parent | Deprecate the ECDH functions. (diff) | |
download | openssl-579422c85cf606c0ae1d4baf414010dc21da657a.tar.xz openssl-579422c85cf606c0ae1d4baf414010dc21da657a.zip |
Deprecate the ECDSA and EV_KEY_METHOD functions.
Use of the low level ECDSA and EC_KEY_METHOD functions has been informally discouraged for a
long time. We now formally deprecate them.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/10960)
Diffstat (limited to 'crypto/ec/curve25519.c')
-rw-r--r-- | crypto/ec/curve25519.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/crypto/ec/curve25519.c b/crypto/ec/curve25519.c index a512aeb237..6672f5d249 100644 --- a/crypto/ec/curve25519.c +++ b/crypto/ec/curve25519.c @@ -7,6 +7,12 @@ * https://www.openssl.org/source/license.html */ +/* + * ECDSA low level APIs are deprecated for public use, but still ok for + * internal use. + */ +#include "internal/deprecated.h" + #include <string.h> #include "ec_local.h" #include <openssl/evp.h> |