summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/hidden/openssl/asn1t.h
diff options
context:
space:
mode:
authorbeck <>2023-07-05 21:23:37 +0000
committerbeck <>2023-07-05 21:23:37 +0000
commitf02026f6f76299e13e86d72eda1292aed8790474 (patch)
tree3cafd04134ea26f8b5da5e120671d9a01bff9156 /src/lib/libcrypto/hidden/openssl/asn1t.h
parentf84ae72d736cf133007e9416282403a5c00bae5d (diff)
downloadopenbsd-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/asn1t.h')
-rw-r--r--src/lib/libcrypto/hidden/openssl/asn1t.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/lib/libcrypto/hidden/openssl/asn1t.h b/src/lib/libcrypto/hidden/openssl/asn1t.h
new file mode 100644
index 0000000000..dcc95cf0b2
--- /dev/null
+++ b/src/lib/libcrypto/hidden/openssl/asn1t.h
@@ -0,0 +1,39 @@
1/* $OpenBSD: asn1t.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_ASN1T_H
19#define _LIBCRYPTO_ASN1T_H
20
21#ifndef _MSC_VER
22#include_next <openssl/asn1t.h>
23#else
24#include "../include/openssl/asn1t.h"
25#endif
26#include "crypto_namespace.h"
27
28LCRYPTO_USED(ASN1_item_ex_new);
29LCRYPTO_USED(ASN1_item_ex_free);
30LCRYPTO_USED(ASN1_template_new);
31LCRYPTO_USED(ASN1_primitive_new);
32LCRYPTO_USED(ASN1_template_free);
33LCRYPTO_USED(ASN1_template_d2i);
34LCRYPTO_USED(ASN1_item_ex_d2i);
35LCRYPTO_USED(ASN1_item_ex_i2d);
36LCRYPTO_USED(ASN1_template_i2d);
37LCRYPTO_USED(ASN1_primitive_free);
38
39#endif /* _LIBCRYPTO_ASN1T_H */