1# $FreeBSD$ 2 3.PATH: ${.CURDIR}/../../opencrypto 4.PATH: ${.CURDIR}/../../crypto 5.PATH: ${.CURDIR}/../../crypto/blowfish 6.PATH: ${.CURDIR}/../../crypto/camellia 7.PATH: ${.CURDIR}/../../crypto/des 8.PATH: ${.CURDIR}/../../crypto/rijndael 9.PATH: ${.CURDIR}/../../crypto/sha2 10.PATH: ${.CURDIR}/../../crypto/siphash 11 12KMOD = crypto 13SRCS = crypto.c cryptodev_if.c 14SRCS += criov.c cryptosoft.c xform.c 15SRCS += cast.c cryptodeflate.c rmd160.c rijndael-alg-fst.c rijndael-api.c 16SRCS += skipjack.c bf_enc.c bf_ecb.c bf_skey.c 17SRCS += camellia.c camellia-api.c 18SRCS += des_ecb.c des_enc.c des_setkey.c 19SRCS += sha1.c sha2.c sha256c.c 20SRCS += siphash.c 21SRCS += opt_param.h cryptodev_if.h bus_if.h device_if.h 22SRCS += opt_ddb.h 23 24.include <bsd.kmod.mk> 25