diff options
Diffstat (limited to 'src/lib/libcrypto/ct/ct_policy.c')
-rw-r--r-- | src/lib/libcrypto/ct/ct_policy.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/libcrypto/ct/ct_policy.c b/src/lib/libcrypto/ct/ct_policy.c index eb2b312019..a242b0d8f8 100644 --- a/src/lib/libcrypto/ct/ct_policy.c +++ b/src/lib/libcrypto/ct/ct_policy.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ct_policy.c,v 1.6 2023/07/08 07:22:58 beck Exp $ */ | 1 | /* $OpenBSD: ct_policy.c,v 1.7 2025/05/10 05:54:38 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Implementations of Certificate Transparency SCT policies. | 3 | * Implementations of Certificate Transparency SCT policies. |
4 | * Written by Rob Percival (robpercival@google.com) for the OpenSSL project. | 4 | * Written by Rob Percival (robpercival@google.com) for the OpenSSL project. |
@@ -56,11 +56,12 @@ | |||
56 | # error "CT is disabled" | 56 | # error "CT is disabled" |
57 | #endif | 57 | #endif |
58 | 58 | ||
59 | #include <openssl/ct.h> | ||
60 | #include <openssl/err.h> | ||
61 | #include <time.h> | 59 | #include <time.h> |
62 | 60 | ||
61 | #include <openssl/ct.h> | ||
62 | |||
63 | #include "ct_local.h" | 63 | #include "ct_local.h" |
64 | #include "err_local.h" | ||
64 | 65 | ||
65 | /* | 66 | /* |
66 | * Number of seconds in the future that an SCT timestamp can be, by default, | 67 | * Number of seconds in the future that an SCT timestamp can be, by default, |