diff options
| author | beck <> | 2023-07-05 21:23:37 +0000 |
|---|---|---|
| committer | beck <> | 2023-07-05 21:23:37 +0000 |
| commit | 0da1913b3c721e1a62fd66bc43547b4e910cbc34 (patch) | |
| tree | 3cafd04134ea26f8b5da5e120671d9a01bff9156 /src/lib/libcrypto/asn1/tasn_fre.c | |
| parent | 78a308af2f74ee5b41c0815ab21ef9d01c1fcdd9 (diff) | |
| download | openbsd-0da1913b3c721e1a62fd66bc43547b4e910cbc34.tar.gz openbsd-0da1913b3c721e1a62fd66bc43547b4e910cbc34.tar.bz2 openbsd-0da1913b3c721e1a62fd66bc43547b4e910cbc34.zip | |
Hide symbols in asn1 and bio
ok jsing@
Diffstat (limited to 'src/lib/libcrypto/asn1/tasn_fre.c')
| -rw-r--r-- | src/lib/libcrypto/asn1/tasn_fre.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libcrypto/asn1/tasn_fre.c b/src/lib/libcrypto/asn1/tasn_fre.c index 38f3764f18..eb205dd6ab 100644 --- a/src/lib/libcrypto/asn1/tasn_fre.c +++ b/src/lib/libcrypto/asn1/tasn_fre.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: tasn_fre.c,v 1.21 2022/11/26 16:08:50 tb Exp $ */ | 1 | /* $OpenBSD: tasn_fre.c,v 1.22 2023/07/05 21:23:36 beck Exp $ */ |
| 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
| 3 | * project 2000. | 3 | * project 2000. |
| 4 | */ | 4 | */ |
| @@ -73,12 +73,14 @@ ASN1_item_free(ASN1_VALUE *val, const ASN1_ITEM *it) | |||
| 73 | { | 73 | { |
| 74 | asn1_item_free(&val, it); | 74 | asn1_item_free(&val, it); |
| 75 | } | 75 | } |
| 76 | LCRYPTO_ALIAS(ASN1_item_free); | ||
| 76 | 77 | ||
| 77 | void | 78 | void |
| 78 | ASN1_item_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it) | 79 | ASN1_item_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it) |
| 79 | { | 80 | { |
| 80 | asn1_item_free(pval, it); | 81 | asn1_item_free(pval, it); |
| 81 | } | 82 | } |
| 83 | LCRYPTO_ALIAS(ASN1_item_ex_free); | ||
| 82 | 84 | ||
| 83 | static void | 85 | static void |
| 84 | asn1_item_free(ASN1_VALUE **pval, const ASN1_ITEM *it) | 86 | asn1_item_free(ASN1_VALUE **pval, const ASN1_ITEM *it) |
| @@ -183,6 +185,7 @@ ASN1_template_free(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt) | |||
| 183 | } else | 185 | } else |
| 184 | asn1_item_free(pval, tt->item); | 186 | asn1_item_free(pval, tt->item); |
| 185 | } | 187 | } |
| 188 | LCRYPTO_ALIAS(ASN1_template_free); | ||
| 186 | 189 | ||
| 187 | void | 190 | void |
| 188 | ASN1_primitive_free(ASN1_VALUE **pval, const ASN1_ITEM *it) | 191 | ASN1_primitive_free(ASN1_VALUE **pval, const ASN1_ITEM *it) |
| @@ -239,3 +242,4 @@ ASN1_primitive_free(ASN1_VALUE **pval, const ASN1_ITEM *it) | |||
| 239 | } | 242 | } |
| 240 | *pval = NULL; | 243 | *pval = NULL; |
| 241 | } | 244 | } |
| 245 | LCRYPTO_ALIAS(ASN1_primitive_free); | ||
