diff options
Diffstat (limited to 'src/lib/libcrypto/ocsp')
-rw-r--r-- | src/lib/libcrypto/ocsp/ocsp_cl.c | 4 | ||||
-rw-r--r-- | src/lib/libcrypto/ocsp/ocsp_ht.c | 6 | ||||
-rw-r--r-- | src/lib/libcrypto/ocsp/ocsp_lib.c | 4 | ||||
-rw-r--r-- | src/lib/libcrypto/ocsp/ocsp_prn.c | 3 | ||||
-rw-r--r-- | src/lib/libcrypto/ocsp/ocsp_srv.c | 4 | ||||
-rw-r--r-- | src/lib/libcrypto/ocsp/ocsp_vfy.c | 4 |
6 files changed, 13 insertions, 12 deletions
diff --git a/src/lib/libcrypto/ocsp/ocsp_cl.c b/src/lib/libcrypto/ocsp/ocsp_cl.c index d8ee33c391..460c1bce5e 100644 --- a/src/lib/libcrypto/ocsp/ocsp_cl.c +++ b/src/lib/libcrypto/ocsp/ocsp_cl.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ocsp_cl.c,v 1.25 2024/03/24 11:30:12 beck Exp $ */ | 1 | /* $OpenBSD: ocsp_cl.c,v 1.26 2025/05/10 05:54:38 tb Exp $ */ |
2 | /* Written by Tom Titchener <Tom_Titchener@groove.net> for the OpenSSL | 2 | /* Written by Tom Titchener <Tom_Titchener@groove.net> for the OpenSSL |
3 | * project. */ | 3 | * project. */ |
4 | 4 | ||
@@ -64,7 +64,6 @@ | |||
64 | #include <stdio.h> | 64 | #include <stdio.h> |
65 | #include <time.h> | 65 | #include <time.h> |
66 | 66 | ||
67 | #include <openssl/err.h> | ||
68 | #include <openssl/ocsp.h> | 67 | #include <openssl/ocsp.h> |
69 | #include <openssl/objects.h> | 68 | #include <openssl/objects.h> |
70 | #include <openssl/pem.h> | 69 | #include <openssl/pem.h> |
@@ -73,6 +72,7 @@ | |||
73 | #include <openssl/x509v3.h> | 72 | #include <openssl/x509v3.h> |
74 | 73 | ||
75 | #include "asn1_local.h" | 74 | #include "asn1_local.h" |
75 | #include "err_local.h" | ||
76 | #include "ocsp_local.h" | 76 | #include "ocsp_local.h" |
77 | 77 | ||
78 | /* Utility functions related to sending OCSP requests and extracting | 78 | /* Utility functions related to sending OCSP requests and extracting |
diff --git a/src/lib/libcrypto/ocsp/ocsp_ht.c b/src/lib/libcrypto/ocsp/ocsp_ht.c index 69723c2154..db83b35518 100644 --- a/src/lib/libcrypto/ocsp/ocsp_ht.c +++ b/src/lib/libcrypto/ocsp/ocsp_ht.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ocsp_ht.c,v 1.27 2023/11/28 09:29:20 jsg Exp $ */ | 1 | /* $OpenBSD: ocsp_ht.c,v 1.28 2025/05/10 05:54:38 tb 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 2006. | 3 | * project 2006. |
4 | */ | 4 | */ |
@@ -60,11 +60,13 @@ | |||
60 | #include <stdlib.h> | 60 | #include <stdlib.h> |
61 | #include <ctype.h> | 61 | #include <ctype.h> |
62 | #include <string.h> | 62 | #include <string.h> |
63 | |||
63 | #include <openssl/asn1.h> | 64 | #include <openssl/asn1.h> |
64 | #include <openssl/ocsp.h> | 65 | #include <openssl/ocsp.h> |
65 | #include <openssl/err.h> | ||
66 | #include <openssl/buffer.h> | 66 | #include <openssl/buffer.h> |
67 | 67 | ||
68 | #include "err_local.h" | ||
69 | |||
68 | /* Stateful OCSP request code, supporting non-blocking I/O */ | 70 | /* Stateful OCSP request code, supporting non-blocking I/O */ |
69 | 71 | ||
70 | /* Opaque OCSP request status structure */ | 72 | /* Opaque OCSP request status structure */ |
diff --git a/src/lib/libcrypto/ocsp/ocsp_lib.c b/src/lib/libcrypto/ocsp/ocsp_lib.c index 521fb67aed..dfa002a594 100644 --- a/src/lib/libcrypto/ocsp/ocsp_lib.c +++ b/src/lib/libcrypto/ocsp/ocsp_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ocsp_lib.c,v 1.28 2024/08/28 06:27:19 tb Exp $ */ | 1 | /* $OpenBSD: ocsp_lib.c,v 1.29 2025/05/10 05:54:38 tb Exp $ */ |
2 | /* Written by Tom Titchener <Tom_Titchener@groove.net> for the OpenSSL | 2 | /* Written by Tom Titchener <Tom_Titchener@groove.net> for the OpenSSL |
3 | * project. */ | 3 | * project. */ |
4 | 4 | ||
@@ -67,13 +67,13 @@ | |||
67 | #include <openssl/opensslconf.h> | 67 | #include <openssl/opensslconf.h> |
68 | 68 | ||
69 | #include <openssl/asn1t.h> | 69 | #include <openssl/asn1t.h> |
70 | #include <openssl/err.h> | ||
71 | #include <openssl/objects.h> | 70 | #include <openssl/objects.h> |
72 | #include <openssl/ocsp.h> | 71 | #include <openssl/ocsp.h> |
73 | #include <openssl/pem.h> | 72 | #include <openssl/pem.h> |
74 | #include <openssl/x509.h> | 73 | #include <openssl/x509.h> |
75 | #include <openssl/x509v3.h> | 74 | #include <openssl/x509v3.h> |
76 | 75 | ||
76 | #include "err_local.h" | ||
77 | #include "ocsp_local.h" | 77 | #include "ocsp_local.h" |
78 | #include "x509_local.h" | 78 | #include "x509_local.h" |
79 | 79 | ||
diff --git a/src/lib/libcrypto/ocsp/ocsp_prn.c b/src/lib/libcrypto/ocsp/ocsp_prn.c index fb7b9651d9..537d5e3d20 100644 --- a/src/lib/libcrypto/ocsp/ocsp_prn.c +++ b/src/lib/libcrypto/ocsp/ocsp_prn.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ocsp_prn.c,v 1.11 2024/08/28 06:18:44 tb Exp $ */ | 1 | /* $OpenBSD: ocsp_prn.c,v 1.12 2025/05/10 05:54:38 tb Exp $ */ |
2 | /* Written by Tom Titchener <Tom_Titchener@groove.net> for the OpenSSL | 2 | /* Written by Tom Titchener <Tom_Titchener@groove.net> for the OpenSSL |
3 | * project. */ | 3 | * project. */ |
4 | 4 | ||
@@ -62,7 +62,6 @@ | |||
62 | */ | 62 | */ |
63 | 63 | ||
64 | #include <openssl/bio.h> | 64 | #include <openssl/bio.h> |
65 | #include <openssl/err.h> | ||
66 | #include <openssl/ocsp.h> | 65 | #include <openssl/ocsp.h> |
67 | #include <openssl/pem.h> | 66 | #include <openssl/pem.h> |
68 | #include <openssl/x509.h> | 67 | #include <openssl/x509.h> |
diff --git a/src/lib/libcrypto/ocsp/ocsp_srv.c b/src/lib/libcrypto/ocsp/ocsp_srv.c index 77c5e2e0fd..4b1d73d7ac 100644 --- a/src/lib/libcrypto/ocsp/ocsp_srv.c +++ b/src/lib/libcrypto/ocsp/ocsp_srv.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ocsp_srv.c,v 1.13 2023/07/08 10:44:00 beck Exp $ */ | 1 | /* $OpenBSD: ocsp_srv.c,v 1.14 2025/05/10 05:54:38 tb 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 2001. | 3 | * project 2001. |
4 | */ | 4 | */ |
@@ -58,13 +58,13 @@ | |||
58 | 58 | ||
59 | #include <stdio.h> | 59 | #include <stdio.h> |
60 | 60 | ||
61 | #include <openssl/err.h> | ||
62 | #include <openssl/objects.h> | 61 | #include <openssl/objects.h> |
63 | #include <openssl/ocsp.h> | 62 | #include <openssl/ocsp.h> |
64 | #include <openssl/pem.h> | 63 | #include <openssl/pem.h> |
65 | #include <openssl/x509.h> | 64 | #include <openssl/x509.h> |
66 | #include <openssl/x509v3.h> | 65 | #include <openssl/x509v3.h> |
67 | 66 | ||
67 | #include "err_local.h" | ||
68 | #include "ocsp_local.h" | 68 | #include "ocsp_local.h" |
69 | 69 | ||
70 | /* Utility functions related to sending OCSP responses and extracting | 70 | /* Utility functions related to sending OCSP responses and extracting |
diff --git a/src/lib/libcrypto/ocsp/ocsp_vfy.c b/src/lib/libcrypto/ocsp/ocsp_vfy.c index 27d2283ea7..185839f465 100644 --- a/src/lib/libcrypto/ocsp/ocsp_vfy.c +++ b/src/lib/libcrypto/ocsp/ocsp_vfy.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ocsp_vfy.c,v 1.24 2024/07/12 18:15:10 beck Exp $ */ | 1 | /* $OpenBSD: ocsp_vfy.c,v 1.25 2025/05/10 05:54:38 tb 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 | */ |
@@ -57,9 +57,9 @@ | |||
57 | */ | 57 | */ |
58 | 58 | ||
59 | #include <openssl/ocsp.h> | 59 | #include <openssl/ocsp.h> |
60 | #include <openssl/err.h> | ||
61 | #include <string.h> | 60 | #include <string.h> |
62 | 61 | ||
62 | #include "err_local.h" | ||
63 | #include "ocsp_local.h" | 63 | #include "ocsp_local.h" |
64 | #include "x509_local.h" | 64 | #include "x509_local.h" |
65 | 65 | ||