blob: 6222c5c83c546629d513871ee6cd547ad49f93bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $NetBSD: modes.inc,v 1.7 2023/05/06 17:07:23 christos Exp $
.PATH: ${OPENSSLSRC}/crypto/modes
MODES_SRCS += \
cbc128.c \
ccm128.c \
cfb128.c \
ctr128.c \
cts128.c \
gcm128.c \
ocb128.c \
ofb128.c \
siv128.c \
wrap128.c \
xts128.c \
SRCS += ${MODES_SRCS}
.for cryptosrc in ${MODES_SRCS}
CPPFLAGS.${cryptosrc} += -I${OPENSSLSRC}/crypto/modes ${MODESCPPFLAGS}
.endfor
|