summaryrefslogtreecommitdiff
path: root/crypto/external/bsd/openssl/lib/libcrypto/aes.inc
blob: c08c7b5322314be6c4cae2daeec373ba3c7a3b04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#	$NetBSD: aes.inc,v 1.5 2023/05/06 17:07:22 christos Exp $

.PATH:	${OPENSSLSRC}/crypto/aes

AES_SRCS ?= aes_core.c aes_cbc.c

AES_SRCS += \
aes_cfb.c \
aes_ecb.c \
aes_ige.c \
aes_misc.c \
aes_ofb.c \
aes_wrap.c \

SRCS += ${AES_SRCS}

.for cryptosrc in ${AES_SRCS}
CPPFLAGS.${cryptosrc} += -I${OPENSSLSRC}/crypto/aes ${AESCPPFLAGS}
.endfor