diff options
author | beck <> | 2023-07-08 15:29:04 +0000 |
---|---|---|
committer | beck <> | 2023-07-08 15:29:04 +0000 |
commit | fb3005d44347523e79c18cf8f224d6044f34af04 (patch) | |
tree | 858373c845c6ed391d9bfd53f8c02d9ae33c3430 /src/lib/libcrypto/hidden/openssl/dh.h | |
parent | 11219faca0a481767f00bb6d2d523c4c847b6299 (diff) | |
download | openbsd-fb3005d44347523e79c18cf8f224d6044f34af04.tar.gz openbsd-fb3005d44347523e79c18cf8f224d6044f34af04.tar.bz2 openbsd-fb3005d44347523e79c18cf8f224d6044f34af04.zip |
Hide symbols in dh
ok tb@
Diffstat (limited to 'src/lib/libcrypto/hidden/openssl/dh.h')
-rw-r--r-- | src/lib/libcrypto/hidden/openssl/dh.h | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/src/lib/libcrypto/hidden/openssl/dh.h b/src/lib/libcrypto/hidden/openssl/dh.h new file mode 100644 index 0000000000..7e6d578151 --- /dev/null +++ b/src/lib/libcrypto/hidden/openssl/dh.h | |||
@@ -0,0 +1,74 @@ | |||
1 | /* $OpenBSD: dh.h,v 1.1 2023/07/08 15:29:04 beck Exp $ */ | ||
2 | /* | ||
3 | * Copyright (c) 2023 Bob Beck <beck@openbsd.org> | ||
4 | * | ||
5 | * Permission to use, copy, modify, and distribute this software for any | ||
6 | * purpose with or without fee is hereby granted, provided that the above | ||
7 | * copyright notice and this permission notice appear in all copies. | ||
8 | * | ||
9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
16 | */ | ||
17 | |||
18 | #ifndef _LIBCRYPTO_DH_H | ||
19 | #define _LIBCRYPTO_DH_H | ||
20 | |||
21 | #ifndef _MSC_VER | ||
22 | #include_next <openssl/dh.h> | ||
23 | #else | ||
24 | #include "../include/openssl/dh.h" | ||
25 | #endif | ||
26 | #include "crypto_namespace.h" | ||
27 | |||
28 | LCRYPTO_USED(d2i_DHparams_bio); | ||
29 | LCRYPTO_USED(i2d_DHparams_bio); | ||
30 | LCRYPTO_USED(d2i_DHparams_fp); | ||
31 | LCRYPTO_USED(i2d_DHparams_fp); | ||
32 | LCRYPTO_USED(DHparams_dup); | ||
33 | LCRYPTO_USED(DH_OpenSSL); | ||
34 | LCRYPTO_USED(DH_set_default_method); | ||
35 | LCRYPTO_USED(DH_get_default_method); | ||
36 | LCRYPTO_USED(DH_set_method); | ||
37 | LCRYPTO_USED(DH_new_method); | ||
38 | LCRYPTO_USED(DH_new); | ||
39 | LCRYPTO_USED(DH_free); | ||
40 | LCRYPTO_USED(DH_up_ref); | ||
41 | LCRYPTO_USED(DH_size); | ||
42 | LCRYPTO_USED(DH_bits); | ||
43 | LCRYPTO_USED(DH_get_ex_new_index); | ||
44 | LCRYPTO_USED(DH_set_ex_data); | ||
45 | LCRYPTO_USED(DH_get_ex_data); | ||
46 | LCRYPTO_USED(DH_security_bits); | ||
47 | LCRYPTO_USED(DH_get0_engine); | ||
48 | LCRYPTO_USED(DH_get0_pqg); | ||
49 | LCRYPTO_USED(DH_set0_pqg); | ||
50 | LCRYPTO_USED(DH_get0_key); | ||
51 | LCRYPTO_USED(DH_set0_key); | ||
52 | LCRYPTO_USED(DH_get0_p); | ||
53 | LCRYPTO_USED(DH_get0_q); | ||
54 | LCRYPTO_USED(DH_get0_g); | ||
55 | LCRYPTO_USED(DH_get0_priv_key); | ||
56 | LCRYPTO_USED(DH_get0_pub_key); | ||
57 | LCRYPTO_USED(DH_clear_flags); | ||
58 | LCRYPTO_USED(DH_test_flags); | ||
59 | LCRYPTO_USED(DH_set_flags); | ||
60 | LCRYPTO_USED(DH_get_length); | ||
61 | LCRYPTO_USED(DH_set_length); | ||
62 | LCRYPTO_USED(DH_generate_parameters); | ||
63 | LCRYPTO_USED(DH_generate_parameters_ex); | ||
64 | LCRYPTO_USED(DH_check); | ||
65 | LCRYPTO_USED(DH_check_pub_key); | ||
66 | LCRYPTO_USED(DH_generate_key); | ||
67 | LCRYPTO_USED(DH_compute_key); | ||
68 | LCRYPTO_USED(d2i_DHparams); | ||
69 | LCRYPTO_USED(i2d_DHparams); | ||
70 | LCRYPTO_USED(DHparams_print_fp); | ||
71 | LCRYPTO_USED(DHparams_print); | ||
72 | LCRYPTO_USED(ERR_load_DH_strings); | ||
73 | |||
74 | #endif /* _LIBCRYPTO_DH_H */ | ||