2002-10-16 14:31:34 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
.PATH: ${.CURDIR}/../../opencrypto
|
|
|
|
.PATH: ${.CURDIR}/../../crypto
|
|
|
|
.PATH: ${.CURDIR}/../../crypto/blowfish
|
|
|
|
.PATH: ${.CURDIR}/../../crypto/des
|
2005-03-11 17:24:46 +00:00
|
|
|
.PATH: ${.CURDIR}/../../crypto/rijndael
|
2002-10-16 14:31:34 +00:00
|
|
|
.PATH: ${.CURDIR}/../../crypto/sha2
|
2007-05-09 19:37:02 +00:00
|
|
|
.PATH: ${.CURDIR}/../../crypto/camellia
|
2002-10-16 14:31:34 +00:00
|
|
|
|
|
|
|
KMOD = crypto
|
2007-03-21 14:39:39 +00:00
|
|
|
SRCS = crypto.c cryptodev_if.c
|
2003-12-15 21:49:41 +00:00
|
|
|
SRCS += criov.c cryptosoft.c xform.c
|
2005-03-11 17:24:46 +00:00
|
|
|
SRCS += cast.c deflate.c rmd160.c rijndael-alg-fst.c rijndael-api.c
|
2010-09-12 16:28:26 +00:00
|
|
|
SRCS += skipjack.c bf_enc.c bf_ecb.c bf_skey.c
|
2002-10-16 14:31:34 +00:00
|
|
|
SRCS += des_ecb.c des_enc.c des_setkey.c
|
|
|
|
SRCS += sha1.c sha2.c
|
2007-03-21 14:39:39 +00:00
|
|
|
SRCS += opt_param.h cryptodev_if.h bus_if.h device_if.h
|
2010-01-07 12:58:03 +00:00
|
|
|
SRCS += opt_ddb.h opt_kdtrace.h
|
2007-05-09 19:37:02 +00:00
|
|
|
SRCS += camellia.c camellia-api.c
|
2002-10-16 14:31:34 +00:00
|
|
|
.include <bsd.kmod.mk>
|