diff options
Diffstat (limited to 'src/lib/libcrypto/dh/dh_local.h')
-rw-r--r-- | src/lib/libcrypto/dh/dh_local.h | 11 |
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 | |||
68 | int DH_check_params_ex(const DH *dh); | ||
69 | int DH_check_params(const DH *dh, int *flags); | ||
70 | int DH_check_ex(const DH *dh); | ||
71 | int 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 */ |