summaryrefslogtreecommitdiff
path: root/lib/libcrypto/hidden/openssl
diff options
context:
space:
mode:
authorBob Beck <beck@cvs.openbsd.org>2023-11-13 12:46:08 +0000
committerBob Beck <beck@cvs.openbsd.org>2023-11-13 12:46:08 +0000
commit8aafb76a8158d7ac31d7121d11a1e02b8caff6b2 (patch)
treec82b332df42bf894bb3a2bda200f389a57bb9d41 /lib/libcrypto/hidden/openssl
parentf4cef4965570cc1838e64f4c5d13c5412cf72985 (diff)
Prepare to expose OPENSSL_gmtime and OPENSSL_timegm as public
This matches when BoringSSL has done, and allows for getting rid of the dependency on system timegm() and gmtime() in libtls. which will make life easier for portable, and remove our dependency on the potentially very slow system versions. ok tb@ - tb will handle the minor bump bits and expose on the next minor bump CVS :----------------------------------------------------------------------
Diffstat (limited to 'lib/libcrypto/hidden/openssl')
-rw-r--r--lib/libcrypto/hidden/openssl/asn1.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libcrypto/hidden/openssl/asn1.h b/lib/libcrypto/hidden/openssl/asn1.h
index fb1393f2a41..11db7b9902e 100644
--- a/lib/libcrypto/hidden/openssl/asn1.h
+++ b/lib/libcrypto/hidden/openssl/asn1.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: asn1.h,v 1.6 2023/07/28 10:33:13 tb Exp $ */
+/* $OpenBSD: asn1.h,v 1.7 2023/11/13 12:46:07 beck Exp $ */
/*
* Copyright (c) 2023 Bob Beck <beck@openbsd.org>
*
@@ -249,5 +249,7 @@ LCRYPTO_USED(SMIME_text);
LCRYPTO_USED(ERR_load_ASN1_strings);
LCRYPTO_USED(ASN1_time_parse);
LCRYPTO_USED(ASN1_time_tm_cmp);
+LCRYPTO_USED(OPENSSL_gmtime);
+LCRYPTO_USED(OPENSSL_timegm);
#endif /* _LIBCRYPTO_ASN1_H */