diff options
author | beck <> | 2023-07-05 21:23:37 +0000 |
---|---|---|
committer | beck <> | 2023-07-05 21:23:37 +0000 |
commit | f02026f6f76299e13e86d72eda1292aed8790474 (patch) | |
tree | 3cafd04134ea26f8b5da5e120671d9a01bff9156 /src/lib/libcrypto/hidden/openssl/bio.h | |
parent | f84ae72d736cf133007e9416282403a5c00bae5d (diff) | |
download | openbsd-f02026f6f76299e13e86d72eda1292aed8790474.tar.gz openbsd-f02026f6f76299e13e86d72eda1292aed8790474.tar.bz2 openbsd-f02026f6f76299e13e86d72eda1292aed8790474.zip |
Hide symbols in asn1 and bio
ok jsing@
Diffstat (limited to 'src/lib/libcrypto/hidden/openssl/bio.h')
-rw-r--r-- | src/lib/libcrypto/hidden/openssl/bio.h | 154 |
1 files changed, 154 insertions, 0 deletions
diff --git a/src/lib/libcrypto/hidden/openssl/bio.h b/src/lib/libcrypto/hidden/openssl/bio.h new file mode 100644 index 0000000000..72c50d5196 --- /dev/null +++ b/src/lib/libcrypto/hidden/openssl/bio.h | |||
@@ -0,0 +1,154 @@ | |||
1 | /* $OpenBSD: bio.h,v 1.1 2023/07/05 21:23:37 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_BIO_H | ||
19 | #define _LIBCRYPTO_BIO_H | ||
20 | |||
21 | #ifndef _MSC_VER | ||
22 | #include_next <openssl/bio.h> | ||
23 | #else | ||
24 | #include "../include/openssl/bio.h" | ||
25 | #endif | ||
26 | #include "crypto_namespace.h" | ||
27 | |||
28 | LCRYPTO_USED(BIO_set_flags); | ||
29 | LCRYPTO_USED(BIO_test_flags); | ||
30 | LCRYPTO_USED(BIO_clear_flags); | ||
31 | LCRYPTO_USED(BIO_get_callback); | ||
32 | LCRYPTO_USED(BIO_set_callback); | ||
33 | LCRYPTO_USED(BIO_get_callback_ex); | ||
34 | LCRYPTO_USED(BIO_set_callback_ex); | ||
35 | LCRYPTO_USED(BIO_get_callback_arg); | ||
36 | LCRYPTO_USED(BIO_set_callback_arg); | ||
37 | LCRYPTO_USED(BIO_method_name); | ||
38 | LCRYPTO_USED(BIO_method_type); | ||
39 | LCRYPTO_USED(BIO_meth_new); | ||
40 | LCRYPTO_USED(BIO_meth_free); | ||
41 | LCRYPTO_USED(BIO_meth_get_write); | ||
42 | LCRYPTO_USED(BIO_meth_set_write); | ||
43 | LCRYPTO_USED(BIO_meth_get_read); | ||
44 | LCRYPTO_USED(BIO_meth_set_read); | ||
45 | LCRYPTO_USED(BIO_meth_get_puts); | ||
46 | LCRYPTO_USED(BIO_meth_set_puts); | ||
47 | LCRYPTO_USED(BIO_meth_get_gets); | ||
48 | LCRYPTO_USED(BIO_meth_set_gets); | ||
49 | LCRYPTO_USED(BIO_meth_get_ctrl); | ||
50 | LCRYPTO_USED(BIO_meth_set_ctrl); | ||
51 | LCRYPTO_USED(BIO_meth_get_create); | ||
52 | LCRYPTO_USED(BIO_meth_set_create); | ||
53 | LCRYPTO_USED(BIO_meth_get_destroy); | ||
54 | LCRYPTO_USED(BIO_meth_set_destroy); | ||
55 | LCRYPTO_USED(BIO_meth_get_callback_ctrl); | ||
56 | LCRYPTO_USED(BIO_meth_set_callback_ctrl); | ||
57 | LCRYPTO_USED(BIO_ctrl_pending); | ||
58 | LCRYPTO_USED(BIO_ctrl_wpending); | ||
59 | LCRYPTO_USED(BIO_ctrl_get_write_guarantee); | ||
60 | LCRYPTO_USED(BIO_ctrl_get_read_request); | ||
61 | LCRYPTO_USED(BIO_ctrl_reset_read_request); | ||
62 | LCRYPTO_USED(BIO_set_ex_data); | ||
63 | LCRYPTO_USED(BIO_get_ex_data); | ||
64 | LCRYPTO_USED(BIO_number_read); | ||
65 | LCRYPTO_USED(BIO_number_written); | ||
66 | LCRYPTO_USED(BIO_asn1_set_prefix); | ||
67 | LCRYPTO_USED(BIO_asn1_get_prefix); | ||
68 | LCRYPTO_USED(BIO_asn1_set_suffix); | ||
69 | LCRYPTO_USED(BIO_asn1_get_suffix); | ||
70 | LCRYPTO_USED(BIO_get_new_index); | ||
71 | LCRYPTO_USED(BIO_s_file); | ||
72 | LCRYPTO_USED(BIO_new_file); | ||
73 | LCRYPTO_USED(BIO_new_fp); | ||
74 | LCRYPTO_USED(BIO_new); | ||
75 | LCRYPTO_USED(BIO_set); | ||
76 | LCRYPTO_USED(BIO_free); | ||
77 | LCRYPTO_USED(BIO_up_ref); | ||
78 | LCRYPTO_USED(BIO_get_data); | ||
79 | LCRYPTO_USED(BIO_set_data); | ||
80 | LCRYPTO_USED(BIO_get_init); | ||
81 | LCRYPTO_USED(BIO_set_init); | ||
82 | LCRYPTO_USED(BIO_get_shutdown); | ||
83 | LCRYPTO_USED(BIO_set_shutdown); | ||
84 | LCRYPTO_USED(BIO_vfree); | ||
85 | LCRYPTO_USED(BIO_read); | ||
86 | LCRYPTO_USED(BIO_gets); | ||
87 | LCRYPTO_USED(BIO_write); | ||
88 | LCRYPTO_USED(BIO_puts); | ||
89 | LCRYPTO_USED(BIO_indent); | ||
90 | LCRYPTO_USED(BIO_ctrl); | ||
91 | LCRYPTO_USED(BIO_callback_ctrl); | ||
92 | LCRYPTO_USED(BIO_ptr_ctrl); | ||
93 | LCRYPTO_USED(BIO_int_ctrl); | ||
94 | LCRYPTO_USED(BIO_push); | ||
95 | LCRYPTO_USED(BIO_pop); | ||
96 | LCRYPTO_USED(BIO_free_all); | ||
97 | LCRYPTO_USED(BIO_find_type); | ||
98 | LCRYPTO_USED(BIO_next); | ||
99 | LCRYPTO_USED(BIO_set_next); | ||
100 | LCRYPTO_USED(BIO_get_retry_BIO); | ||
101 | LCRYPTO_USED(BIO_get_retry_reason); | ||
102 | LCRYPTO_USED(BIO_set_retry_reason); | ||
103 | LCRYPTO_USED(BIO_dup_chain); | ||
104 | LCRYPTO_USED(BIO_nread0); | ||
105 | LCRYPTO_USED(BIO_nread); | ||
106 | LCRYPTO_USED(BIO_nwrite0); | ||
107 | LCRYPTO_USED(BIO_nwrite); | ||
108 | LCRYPTO_USED(BIO_debug_callback); | ||
109 | LCRYPTO_USED(BIO_s_mem); | ||
110 | LCRYPTO_USED(BIO_new_mem_buf); | ||
111 | LCRYPTO_USED(BIO_s_socket); | ||
112 | LCRYPTO_USED(BIO_s_connect); | ||
113 | LCRYPTO_USED(BIO_s_accept); | ||
114 | LCRYPTO_USED(BIO_s_fd); | ||
115 | LCRYPTO_USED(BIO_s_log); | ||
116 | LCRYPTO_USED(BIO_s_bio); | ||
117 | LCRYPTO_USED(BIO_s_null); | ||
118 | LCRYPTO_USED(BIO_f_null); | ||
119 | LCRYPTO_USED(BIO_f_buffer); | ||
120 | LCRYPTO_USED(BIO_f_nbio_test); | ||
121 | LCRYPTO_USED(BIO_s_datagram); | ||
122 | LCRYPTO_USED(BIO_sock_should_retry); | ||
123 | LCRYPTO_USED(BIO_sock_non_fatal_error); | ||
124 | LCRYPTO_USED(BIO_dgram_non_fatal_error); | ||
125 | LCRYPTO_USED(BIO_fd_should_retry); | ||
126 | LCRYPTO_USED(BIO_fd_non_fatal_error); | ||
127 | LCRYPTO_USED(BIO_dump); | ||
128 | LCRYPTO_USED(BIO_dump_indent); | ||
129 | LCRYPTO_USED(BIO_dump_fp); | ||
130 | LCRYPTO_USED(BIO_dump_indent_fp); | ||
131 | LCRYPTO_USED(BIO_gethostbyname); | ||
132 | LCRYPTO_USED(BIO_sock_error); | ||
133 | LCRYPTO_USED(BIO_socket_ioctl); | ||
134 | LCRYPTO_USED(BIO_socket_nbio); | ||
135 | LCRYPTO_USED(BIO_get_port); | ||
136 | LCRYPTO_USED(BIO_get_host_ip); | ||
137 | LCRYPTO_USED(BIO_get_accept_socket); | ||
138 | LCRYPTO_USED(BIO_accept); | ||
139 | LCRYPTO_USED(BIO_sock_init); | ||
140 | LCRYPTO_USED(BIO_sock_cleanup); | ||
141 | LCRYPTO_USED(BIO_set_tcp_ndelay); | ||
142 | LCRYPTO_USED(BIO_new_socket); | ||
143 | LCRYPTO_USED(BIO_new_dgram); | ||
144 | LCRYPTO_USED(BIO_new_fd); | ||
145 | LCRYPTO_USED(BIO_new_connect); | ||
146 | LCRYPTO_USED(BIO_new_accept); | ||
147 | LCRYPTO_USED(BIO_copy_next_retry); | ||
148 | LCRYPTO_USED(BIO_printf); | ||
149 | LCRYPTO_USED(BIO_vprintf); | ||
150 | LCRYPTO_USED(BIO_snprintf); | ||
151 | LCRYPTO_USED(BIO_vsnprintf); | ||
152 | LCRYPTO_USED(ERR_load_BIO_strings); | ||
153 | |||
154 | #endif /* _LIBCRYPTO_BIO_H */ | ||