diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2024-03-28 00:57:27 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2024-03-28 00:57:27 +0000 |
commit | ce360b00f6b93e61e70b7b67ff117846296c0140 (patch) | |
tree | b396d7eeb2ed8db11698f0d4d5959e8a0f2ad78b /lib/libcrypto/Makefile | |
parent | 48ab0701a65eb5f39892983bf0c5a4c82ddb0175 (diff) |
Consolidate most of the AES modes into a single C file.
Discussed with tb@
Diffstat (limited to 'lib/libcrypto/Makefile')
-rw-r--r-- | lib/libcrypto/Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/lib/libcrypto/Makefile b/lib/libcrypto/Makefile index 86d8cbcad6e..63600aa9233 100644 --- a/lib/libcrypto/Makefile +++ b/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 |