From 8d3553605aee1f90e26f3697bd4c5f38bfcad02d Mon Sep 17 00:00:00 2001 From: jsing <> Date: Thu, 28 Mar 2024 00:57:26 +0000 Subject: Consolidate most of the AES modes into a single C file. Discussed with tb@ --- src/lib/libcrypto/Makefile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src/lib/libcrypto/Makefile') diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile index 86d8cbcad6..63600aa923 100644 --- a/src/lib/libcrypto/Makefile +++ b/src/lib/libcrypto/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.179 2024/03/27 12:56:25 jsing Exp $ +# $OpenBSD: Makefile,v 1.180 2024/03/28 00:57:26 jsing Exp $ LIB= crypto LIBREBUILD=y @@ -72,12 +72,8 @@ SRCS+= o_fips.c SRCS+= o_str.c # aes/ -SRCS+= aes_cfb.c -SRCS+= aes_ctr.c -SRCS+= aes_ecb.c +SRCS+= aes.c SRCS+= aes_ige.c -SRCS+= aes_ofb.c -SRCS+= aes_wrap.c # asn1/ SRCS+= a_bitstr.c -- cgit v1.2.3-55-g6feb