From 9ba2385eabb29de87df68ff88f34bbd29ed4952e Mon Sep 17 00:00:00 2001 From: jsing <> Date: Tue, 14 Dec 2021 17:35:21 +0000 Subject: Consolidate ASN.1 universal tag type data. There are currently three different tables in three different files that contain information about ASN.1 universal class tag types. Range checking is also implemented in three different places (with different implementations). Consolidate all of this into a single table, provide a lookup function that deals with the range checks and wrappers to deal with specific types. ok inoguchi@ tb@ --- src/lib/libcrypto/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/libcrypto/Makefile') diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile index df4649acaa..c7d84b437b 100644 --- a/src/lib/libcrypto/Makefile +++ b/src/lib/libcrypto/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.55 2021/12/13 17:56:15 jsing Exp $ +# $OpenBSD: Makefile,v 1.56 2021/12/14 17:35:21 jsing Exp $ LIB= crypto LIBREBUILD=y @@ -65,7 +65,7 @@ SRCS+= f_int.c f_string.c n_pkey.c SRCS+= f_enum.c x_pkey.c x_exten.c bio_asn1.c bio_ndef.c asn_mime.c SRCS+= asn1_gen.c asn1_par.c asn1_lib.c asn1_err.c a_strnid.c SRCS+= evp_asn1.c asn_pack.c p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c -SRCS+= a_time_tm.c +SRCS+= a_time_tm.c asn1_types.c # bf/ SRCS+= bf_skey.c bf_ecb.c bf_cfb64.c bf_ofb64.c -- cgit v1.2.3-55-g6feb