Home | History | Annotate | Line # | Download | only in libcrypto
aes.inc revision 1.1
      1 #	$NetBSD: aes.inc,v 1.1 2025/07/17 14:25:24 christos Exp $
      2 
      3 .PATH.c:	${OPENSSLSRC}/crypto/aes
      4 
      5 AES_SRCS ?= aes_core.c aes_cbc.c
      6 
      7 AES_SRCS += \
      8 aes_cfb.c \
      9 aes_ecb.c \
     10 aes_ige.c \
     11 aes_misc.c \
     12 aes_ofb.c \
     13 aes_wrap.c \
     14 
     15 SRCS += ${AES_SRCS}
     16 
     17 # need for all files
     18 CPPFLAGS+=${AESCPPFLAGS}
     19