summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/Makefile
diff options
context:
space:
mode:
authorbeck <>2022-11-08 12:56:00 +0000
committerbeck <>2022-11-08 12:56:00 +0000
commit1b638f6021d5c11fb59141323a36e2cd02da5f36 (patch)
tree6afc424706c2c9c83e686d335838e684e3a74fa2 /src/lib/libcrypto/Makefile
parentce83cad5529fd47577d92c512f97ce77f2508fb0 (diff)
downloadopenbsd-1b638f6021d5c11fb59141323a36e2cd02da5f36.tar.gz
openbsd-1b638f6021d5c11fb59141323a36e2cd02da5f36.tar.bz2
openbsd-1b638f6021d5c11fb59141323a36e2cd02da5f36.zip
Replace the old OpenSSL julian date stuff with BoringSSL's
OpenSSL dealt with time conversion using a classical julian day scheme. BoringSSL got rid of it and uses only a julian style calculation for seconds since the POSIX time epoch. This changes libressl to use the seconds calculation exculusively instead of a mix of the julian day based conversions and the system time conversions to and from time_t to tm. ok tb@ jsing@
Diffstat (limited to 'src/lib/libcrypto/Makefile')
-rw-r--r--src/lib/libcrypto/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile
index a3091616a5..d3daf29970 100644
--- a/src/lib/libcrypto/Makefile
+++ b/src/lib/libcrypto/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.79 2022/08/20 09:16:18 tb Exp $ 1# $OpenBSD: Makefile,v 1.80 2022/11/08 12:56:00 beck Exp $
2 2
3LIB= crypto 3LIB= crypto
4LIBREBUILD=y 4LIBREBUILD=y
@@ -53,7 +53,7 @@ SYMBOL_LIST= ${.CURDIR}/Symbols.list
53 53
54# crypto/ 54# crypto/
55SRCS+= cryptlib.c malloc-wrapper.c mem_dbg.c cversion.c ex_data.c cpt_err.c 55SRCS+= cryptlib.c malloc-wrapper.c mem_dbg.c cversion.c ex_data.c cpt_err.c
56SRCS+= o_time.c o_str.c o_init.c o_fips.c 56SRCS+= o_str.c o_init.c o_fips.c
57SRCS+= mem_clr.c crypto_init.c crypto_lock.c 57SRCS+= mem_clr.c crypto_init.c crypto_lock.c
58 58
59# aes/ 59# aes/
@@ -72,7 +72,7 @@ SRCS+= tasn_prn.c ameth_lib.c
72SRCS+= x_pkey.c x_exten.c bio_asn1.c bio_ndef.c asn_mime.c 72SRCS+= x_pkey.c x_exten.c bio_asn1.c bio_ndef.c asn_mime.c
73SRCS+= asn1_gen.c asn1_par.c asn1_old_lib.c asn1_err.c a_strnid.c 73SRCS+= asn1_gen.c asn1_par.c asn1_old_lib.c asn1_err.c a_strnid.c
74SRCS+= p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c 74SRCS+= p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c
75SRCS+= a_time_tm.c asn1_item.c asn1_old.c asn1_types.c asn1_lib.c 75SRCS+= a_time_tm.c asn1_item.c asn1_old.c asn1_types.c asn1_lib.c a_time_posix.c
76 76
77# bf/ 77# bf/
78SRCS+= bf_skey.c bf_ecb.c bf_cfb64.c bf_ofb64.c 78SRCS+= bf_skey.c bf_ecb.c bf_cfb64.c bf_ofb64.c