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/ec_curve.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/ec_curve.c')
-rw-r--r-- | crypto/ec/ec_curve.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/crypto/ec/ec_curve.c b/crypto/ec/ec_curve.c index 2639b1b547..5951615ec2 100644 --- a/crypto/ec/ec_curve.c +++ b/crypto/ec/ec_curve.c @@ -8,6 +8,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/err.h> |