summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2020-03-03 17:38:39 +1000
committerPauli <paul.dale@oracle.com>2020-04-19 10:37:38 +1000
commitccefc3411e8870776b83fe740664c1e23217eb9c (patch)
tree0b61f35fe014dea4096f79440d2e8b1305bb0018 /include
parentb0cfe526d75359e9bf992df16fce32854593cab3 (diff)
dhparam: update command line app to use EVP calls
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/11225)
Diffstat (limited to 'include')
-rw-r--r--include/openssl/dh.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/openssl/dh.h b/include/openssl/dh.h
index d705f50f09..ab455b7492 100644
--- a/include/openssl/dh.h
+++ b/include/openssl/dh.h
@@ -222,8 +222,8 @@ void DH_clear_flags(DH *dh, int flags);
int DH_test_flags(const DH *dh, int flags);
void DH_set_flags(DH *dh, int flags);
DEPRECATEDIN_3_0(ENGINE *DH_get0_engine(DH *d))
-DEPRECATEDIN_3_0(long DH_get_length(const DH *dh))
-DEPRECATEDIN_3_0(int DH_set_length(DH *dh, long length))
+long DH_get_length(const DH *dh);
+int DH_set_length(DH *dh, long length);
DEPRECATEDIN_3_0(DH_METHOD *DH_meth_new(const char *name, int flags))
DEPRECATEDIN_3_0(void DH_meth_free(DH_METHOD *dhm))