diff options
author | beck <> | 2022-11-08 12:56:00 +0000 |
---|---|---|
committer | beck <> | 2022-11-08 12:56:00 +0000 |
commit | 1b638f6021d5c11fb59141323a36e2cd02da5f36 (patch) | |
tree | 6afc424706c2c9c83e686d335838e684e3a74fa2 /src/lib/libcrypto/Makefile | |
parent | ce83cad5529fd47577d92c512f97ce77f2508fb0 (diff) | |
download | openbsd-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/Makefile | 6 |
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 | ||
3 | LIB= crypto | 3 | LIB= crypto |
4 | LIBREBUILD=y | 4 | LIBREBUILD=y |
@@ -53,7 +53,7 @@ SYMBOL_LIST= ${.CURDIR}/Symbols.list | |||
53 | 53 | ||
54 | # crypto/ | 54 | # crypto/ |
55 | SRCS+= cryptlib.c malloc-wrapper.c mem_dbg.c cversion.c ex_data.c cpt_err.c | 55 | SRCS+= cryptlib.c malloc-wrapper.c mem_dbg.c cversion.c ex_data.c cpt_err.c |
56 | SRCS+= o_time.c o_str.c o_init.c o_fips.c | 56 | SRCS+= o_str.c o_init.c o_fips.c |
57 | SRCS+= mem_clr.c crypto_init.c crypto_lock.c | 57 | SRCS+= 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 | |||
72 | SRCS+= x_pkey.c x_exten.c bio_asn1.c bio_ndef.c asn_mime.c | 72 | SRCS+= x_pkey.c x_exten.c bio_asn1.c bio_ndef.c asn_mime.c |
73 | SRCS+= asn1_gen.c asn1_par.c asn1_old_lib.c asn1_err.c a_strnid.c | 73 | SRCS+= asn1_gen.c asn1_par.c asn1_old_lib.c asn1_err.c a_strnid.c |
74 | SRCS+= p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c | 74 | SRCS+= p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c |
75 | SRCS+= a_time_tm.c asn1_item.c asn1_old.c asn1_types.c asn1_lib.c | 75 | SRCS+= 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/ |
78 | SRCS+= bf_skey.c bf_ecb.c bf_cfb64.c bf_ofb64.c | 78 | SRCS+= bf_skey.c bf_ecb.c bf_cfb64.c bf_ofb64.c |