diff options
author | Pauli <paul.dale@oracle.com> | 2020-01-29 22:23:39 +0100 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2020-02-11 23:52:41 +0100 |
commit | f41ac0eeab9d2889d44e3acf6ff1e8274d03d73e (patch) | |
tree | ba3620a537ece73983886b7449eab118e5869223 /fuzz | |
parent | dsa.h: fix preprocessor indentation (diff) | |
download | openssl-f41ac0eeab9d2889d44e3acf6ff1e8274d03d73e.tar.xz openssl-f41ac0eeab9d2889d44e3acf6ff1e8274d03d73e.zip |
Deprecate the low level DSA functions.
Use of the low level DSA 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/10977)
Diffstat (limited to 'fuzz')
-rw-r--r-- | fuzz/asn1.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fuzz/asn1.c b/fuzz/asn1.c index 0dbccb0698..846bb8fa3d 100644 --- a/fuzz/asn1.c +++ b/fuzz/asn1.c @@ -334,9 +334,9 @@ int FuzzerTestOneInput(const uint8_t *buf, size_t len) #endif #ifndef OPENSSL_NO_DSA DO_TEST_NO_PRINT(DSA_SIG, d2i_DSA_SIG, i2d_DSA_SIG); - DO_TEST_PRINT_OFFSET(DSA, d2i_DSAPrivateKey, i2d_DSAPrivateKey, DSA_print); - DO_TEST_PRINT_OFFSET(DSA, d2i_DSAPublicKey, i2d_DSAPublicKey, DSA_print); - DO_TEST(DSA, d2i_DSAparams, i2d_DSAparams, DSAparams_print); + DO_TEST_NO_PRINT(DSA, d2i_DSAPrivateKey, i2d_DSAPrivateKey); + DO_TEST_NO_PRINT(DSA, d2i_DSAPublicKey, i2d_DSAPublicKey); + DO_TEST_NO_PRINT(DSA, d2i_DSAparams, i2d_DSAparams); #endif DO_TEST_PRINT_OFFSET(RSA, d2i_RSAPublicKey, i2d_RSAPublicKey, RSA_print); #ifndef OPENSSL_NO_EC |