diff options
author | tb <> | 2024-04-15 15:52:46 +0000 |
---|---|---|
committer | tb <> | 2024-04-15 15:52:46 +0000 |
commit | fd4066a78d7d353cca0845b810adcea3560a0ae5 (patch) | |
tree | ef7659a9bc19d05026d796f217375511b67920ff /src/lib/libcrypto/ts | |
parent | 618ac6b71539e63e174c458b65bd18a06f102173 (diff) | |
download | openbsd-fd4066a78d7d353cca0845b810adcea3560a0ae5.tar.gz openbsd-fd4066a78d7d353cca0845b810adcea3560a0ae5.tar.bz2 openbsd-fd4066a78d7d353cca0845b810adcea3560a0ae5.zip |
And a pile of TS ASN.1 stuff becomes internal-only, too
ok jsing
Diffstat (limited to 'src/lib/libcrypto/ts')
-rw-r--r-- | src/lib/libcrypto/ts/ts_asn1.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/lib/libcrypto/ts/ts_asn1.c b/src/lib/libcrypto/ts/ts_asn1.c index 60ee0b81cb..feb2da68f9 100644 --- a/src/lib/libcrypto/ts/ts_asn1.c +++ b/src/lib/libcrypto/ts/ts_asn1.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ts_asn1.c,v 1.14 2023/07/07 07:25:21 beck Exp $ */ | 1 | /* $OpenBSD: ts_asn1.c,v 1.15 2024/04/15 15:52:46 tb Exp $ */ |
2 | /* Written by Nils Larsch for the OpenSSL project 2004. | 2 | /* Written by Nils Larsch for the OpenSSL project 2004. |
3 | */ | 3 | */ |
4 | /* ==================================================================== | 4 | /* ==================================================================== |
@@ -80,7 +80,7 @@ static const ASN1_TEMPLATE TS_MSG_IMPRINT_seq_tt[] = { | |||
80 | }, | 80 | }, |
81 | }; | 81 | }; |
82 | 82 | ||
83 | const ASN1_ITEM TS_MSG_IMPRINT_it = { | 83 | static const ASN1_ITEM TS_MSG_IMPRINT_it = { |
84 | .itype = ASN1_ITYPE_SEQUENCE, | 84 | .itype = ASN1_ITYPE_SEQUENCE, |
85 | .utype = V_ASN1_SEQUENCE, | 85 | .utype = V_ASN1_SEQUENCE, |
86 | .templates = TS_MSG_IMPRINT_seq_tt, | 86 | .templates = TS_MSG_IMPRINT_seq_tt, |
@@ -202,7 +202,7 @@ static const ASN1_TEMPLATE TS_REQ_seq_tt[] = { | |||
202 | }, | 202 | }, |
203 | }; | 203 | }; |
204 | 204 | ||
205 | const ASN1_ITEM TS_REQ_it = { | 205 | static const ASN1_ITEM TS_REQ_it = { |
206 | .itype = ASN1_ITYPE_SEQUENCE, | 206 | .itype = ASN1_ITYPE_SEQUENCE, |
207 | .utype = V_ASN1_SEQUENCE, | 207 | .utype = V_ASN1_SEQUENCE, |
208 | .templates = TS_REQ_seq_tt, | 208 | .templates = TS_REQ_seq_tt, |
@@ -303,7 +303,7 @@ static const ASN1_TEMPLATE TS_ACCURACY_seq_tt[] = { | |||
303 | }, | 303 | }, |
304 | }; | 304 | }; |
305 | 305 | ||
306 | const ASN1_ITEM TS_ACCURACY_it = { | 306 | static const ASN1_ITEM TS_ACCURACY_it = { |
307 | .itype = ASN1_ITYPE_SEQUENCE, | 307 | .itype = ASN1_ITYPE_SEQUENCE, |
308 | .utype = V_ASN1_SEQUENCE, | 308 | .utype = V_ASN1_SEQUENCE, |
309 | .templates = TS_ACCURACY_seq_tt, | 309 | .templates = TS_ACCURACY_seq_tt, |
@@ -423,7 +423,7 @@ static const ASN1_TEMPLATE TS_TST_INFO_seq_tt[] = { | |||
423 | }, | 423 | }, |
424 | }; | 424 | }; |
425 | 425 | ||
426 | const ASN1_ITEM TS_TST_INFO_it = { | 426 | static const ASN1_ITEM TS_TST_INFO_it = { |
427 | .itype = ASN1_ITYPE_SEQUENCE, | 427 | .itype = ASN1_ITYPE_SEQUENCE, |
428 | .utype = V_ASN1_SEQUENCE, | 428 | .utype = V_ASN1_SEQUENCE, |
429 | .templates = TS_TST_INFO_seq_tt, | 429 | .templates = TS_TST_INFO_seq_tt, |
@@ -524,7 +524,7 @@ static const ASN1_TEMPLATE TS_STATUS_INFO_seq_tt[] = { | |||
524 | }, | 524 | }, |
525 | }; | 525 | }; |
526 | 526 | ||
527 | const ASN1_ITEM TS_STATUS_INFO_it = { | 527 | static const ASN1_ITEM TS_STATUS_INFO_it = { |
528 | .itype = ASN1_ITYPE_SEQUENCE, | 528 | .itype = ASN1_ITYPE_SEQUENCE, |
529 | .utype = V_ASN1_SEQUENCE, | 529 | .utype = V_ASN1_SEQUENCE, |
530 | .templates = TS_STATUS_INFO_seq_tt, | 530 | .templates = TS_STATUS_INFO_seq_tt, |
@@ -640,7 +640,7 @@ static const ASN1_TEMPLATE TS_RESP_seq_tt[] = { | |||
640 | }, | 640 | }, |
641 | }; | 641 | }; |
642 | 642 | ||
643 | const ASN1_ITEM TS_RESP_it = { | 643 | static const ASN1_ITEM TS_RESP_it = { |
644 | .itype = ASN1_ITYPE_SEQUENCE, | 644 | .itype = ASN1_ITYPE_SEQUENCE, |
645 | .utype = V_ASN1_SEQUENCE, | 645 | .utype = V_ASN1_SEQUENCE, |
646 | .templates = TS_RESP_seq_tt, | 646 | .templates = TS_RESP_seq_tt, |
@@ -734,7 +734,7 @@ static const ASN1_TEMPLATE ESS_ISSUER_SERIAL_seq_tt[] = { | |||
734 | }, | 734 | }, |
735 | }; | 735 | }; |
736 | 736 | ||
737 | const ASN1_ITEM ESS_ISSUER_SERIAL_it = { | 737 | static const ASN1_ITEM ESS_ISSUER_SERIAL_it = { |
738 | .itype = ASN1_ITYPE_SEQUENCE, | 738 | .itype = ASN1_ITYPE_SEQUENCE, |
739 | .utype = V_ASN1_SEQUENCE, | 739 | .utype = V_ASN1_SEQUENCE, |
740 | .templates = ESS_ISSUER_SERIAL_seq_tt, | 740 | .templates = ESS_ISSUER_SERIAL_seq_tt, |
@@ -798,7 +798,7 @@ static const ASN1_TEMPLATE ESS_CERT_ID_seq_tt[] = { | |||
798 | }, | 798 | }, |
799 | }; | 799 | }; |
800 | 800 | ||
801 | const ASN1_ITEM ESS_CERT_ID_it = { | 801 | static const ASN1_ITEM ESS_CERT_ID_it = { |
802 | .itype = ASN1_ITYPE_SEQUENCE, | 802 | .itype = ASN1_ITYPE_SEQUENCE, |
803 | .utype = V_ASN1_SEQUENCE, | 803 | .utype = V_ASN1_SEQUENCE, |
804 | .templates = ESS_CERT_ID_seq_tt, | 804 | .templates = ESS_CERT_ID_seq_tt, |
@@ -862,7 +862,7 @@ static const ASN1_TEMPLATE ESS_SIGNING_CERT_seq_tt[] = { | |||
862 | }, | 862 | }, |
863 | }; | 863 | }; |
864 | 864 | ||
865 | const ASN1_ITEM ESS_SIGNING_CERT_it = { | 865 | static const ASN1_ITEM ESS_SIGNING_CERT_it = { |
866 | .itype = ASN1_ITYPE_SEQUENCE, | 866 | .itype = ASN1_ITYPE_SEQUENCE, |
867 | .utype = V_ASN1_SEQUENCE, | 867 | .utype = V_ASN1_SEQUENCE, |
868 | .templates = ESS_SIGNING_CERT_seq_tt, | 868 | .templates = ESS_SIGNING_CERT_seq_tt, |