summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/dh/dh_local.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/dh/dh_local.h')
-rw-r--r--src/lib/libcrypto/dh/dh_local.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/lib/libcrypto/dh/dh_local.h b/src/lib/libcrypto/dh/dh_local.h
index 82054af757..21bc266a9c 100644
--- a/src/lib/libcrypto/dh/dh_local.h
+++ b/src/lib/libcrypto/dh/dh_local.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: dh_local.h,v 1.1 2022/01/07 09:27:13 tb Exp $ */ 1/* $OpenBSD: dh_local.h,v 1.2 2022/01/10 12:00:52 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -61,6 +61,15 @@
61 61
62__BEGIN_HIDDEN_DECLS 62__BEGIN_HIDDEN_DECLS
63 63
64/*
65 * Public API in OpenSSL that we only want to use internally.
66 */
67
68int DH_check_params_ex(const DH *dh);
69int DH_check_params(const DH *dh, int *flags);
70int DH_check_ex(const DH *dh);
71int DH_check_pub_key_ex(const DH *dh, const BIGNUM *pub_key);
72
64__END_HIDDEN_DECLS 73__END_HIDDEN_DECLS
65 74
66#endif /* !HEADER_DH_LOCAL_H */ 75#endif /* !HEADER_DH_LOCAL_H */