summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/x509/x509_asid.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/x509/x509_asid.c')
-rw-r--r--src/lib/libcrypto/x509/x509_asid.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libcrypto/x509/x509_asid.c b/src/lib/libcrypto/x509/x509_asid.c
index 2fda58c3fa..e3af673202 100644
--- a/src/lib/libcrypto/x509/x509_asid.c
+++ b/src/lib/libcrypto/x509/x509_asid.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: x509_asid.c,v 1.43 2024/02/20 14:58:16 tb Exp $ */ 1/* $OpenBSD: x509_asid.c,v 1.44 2024/07/08 14:47:44 beck Exp $ */
2/* 2/*
3 * Contributed to the OpenSSL Project by the American Registry for 3 * Contributed to the OpenSSL Project by the American Registry for
4 * Internet Numbers ("ARIN"). 4 * Internet Numbers ("ARIN").
@@ -102,6 +102,7 @@ const ASN1_ITEM ASRange_it = {
102 .size = sizeof(ASRange), 102 .size = sizeof(ASRange),
103 .sname = "ASRange", 103 .sname = "ASRange",
104}; 104};
105LCRYPTO_ALIAS(ASRange_it);
105 106
106static const ASN1_TEMPLATE ASIdOrRange_ch_tt[] = { 107static const ASN1_TEMPLATE ASIdOrRange_ch_tt[] = {
107 { 108 {
@@ -129,6 +130,7 @@ const ASN1_ITEM ASIdOrRange_it = {
129 .size = sizeof(ASIdOrRange), 130 .size = sizeof(ASIdOrRange),
130 .sname = "ASIdOrRange", 131 .sname = "ASIdOrRange",
131}; 132};
133LCRYPTO_ALIAS(ASIdOrRange_it);
132 134
133static const ASN1_TEMPLATE ASIdentifierChoice_ch_tt[] = { 135static const ASN1_TEMPLATE ASIdentifierChoice_ch_tt[] = {
134 { 136 {
@@ -156,6 +158,7 @@ const ASN1_ITEM ASIdentifierChoice_it = {
156 .size = sizeof(ASIdentifierChoice), 158 .size = sizeof(ASIdentifierChoice),
157 .sname = "ASIdentifierChoice", 159 .sname = "ASIdentifierChoice",
158}; 160};
161LCRYPTO_ALIAS(ASIdentifierChoice_it);
159 162
160static const ASN1_TEMPLATE ASIdentifiers_seq_tt[] = { 163static const ASN1_TEMPLATE ASIdentifiers_seq_tt[] = {
161 { 164 {
@@ -183,6 +186,7 @@ const ASN1_ITEM ASIdentifiers_it = {
183 .size = sizeof(ASIdentifiers), 186 .size = sizeof(ASIdentifiers),
184 .sname = "ASIdentifiers", 187 .sname = "ASIdentifiers",
185}; 188};
189LCRYPTO_ALIAS(ASIdentifiers_it);
186 190
187ASRange * 191ASRange *
188d2i_ASRange(ASRange **a, const unsigned char **in, long len) 192d2i_ASRange(ASRange **a, const unsigned char **in, long len)