summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/x509/x509_internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/x509/x509_internal.h')
-rw-r--r--src/lib/libcrypto/x509/x509_internal.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/x509/x509_internal.h b/src/lib/libcrypto/x509/x509_internal.h
index 7ca67a853b..a9b584b13e 100644
--- a/src/lib/libcrypto/x509/x509_internal.h
+++ b/src/lib/libcrypto/x509/x509_internal.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: x509_internal.h,v 1.14 2021/11/01 20:53:08 tb Exp $ */ 1/* $OpenBSD: x509_internal.h,v 1.15 2021/11/04 23:52:34 beck Exp $ */
2/* 2/*
3 * Copyright (c) 2020 Bob Beck <beck@openbsd.org> 3 * Copyright (c) 2020 Bob Beck <beck@openbsd.org>
4 * 4 *
@@ -96,8 +96,7 @@ int x509_vfy_callback_indicate_success(X509_STORE_CTX *ctx);
96void x509v3_cache_extensions(X509 *x); 96void x509v3_cache_extensions(X509 *x);
97X509 *x509_vfy_lookup_cert_match(X509_STORE_CTX *ctx, X509 *x); 97X509 *x509_vfy_lookup_cert_match(X509_STORE_CTX *ctx, X509 *x);
98 98
99int x509_verify_asn1_time_to_tm(const ASN1_TIME *atime, struct tm *tm, 99time_t x509_verify_asn1_time_to_time_t(const ASN1_TIME *atime, int notafter);
100 int notafter);
101 100
102struct x509_verify_ctx *x509_verify_ctx_new_from_xsc(X509_STORE_CTX *xsc); 101struct x509_verify_ctx *x509_verify_ctx_new_from_xsc(X509_STORE_CTX *xsc);
103 102
@@ -132,6 +131,7 @@ int x509_constraints_check(struct x509_constraints_names *names,
132 struct x509_constraints_names *excluded, int *error); 131 struct x509_constraints_names *excluded, int *error);
133int x509_constraints_chain(STACK_OF(X509) *chain, int *error, 132int x509_constraints_chain(STACK_OF(X509) *chain, int *error,
134 int *depth); 133 int *depth);
134void x509_verify_cert_info_populate(X509 *cert);
135 135
136__END_HIDDEN_DECLS 136__END_HIDDEN_DECLS
137 137