2002-10-16 14:31:34 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
.PATH: ${.CURDIR}/../../opencrypto
|
|
|
|
.PATH: ${.CURDIR}/../../crypto
|
|
|
|
.PATH: ${.CURDIR}/../../crypto/blowfish
|
2014-03-06 00:37:16 +00:00
|
|
|
.PATH: ${.CURDIR}/../../crypto/camellia
|
2002-10-16 14:31:34 +00:00
|
|
|
.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
|
2014-03-06 00:37:16 +00:00
|
|
|
.PATH: ${.CURDIR}/../../crypto/siphash
|
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
|
2013-12-09 02:06:52 +00:00
|
|
|
SRCS += cast.c cryptodeflate.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
|
2014-03-06 00:37:16 +00:00
|
|
|
SRCS += camellia.c camellia-api.c
|
2002-10-16 14:31:34 +00:00
|
|
|
SRCS += des_ecb.c des_enc.c des_setkey.c
|
2014-03-16 01:55:30 +00:00
|
|
|
SRCS += sha1.c sha2.c sha256c.c
|
2014-03-06 00:37:16 +00:00
|
|
|
SRCS += siphash.c
|
2014-12-12 19:56:36 +00:00
|
|
|
SRCS += gmac.c gfmult.c
|
2007-03-21 14:39:39 +00:00
|
|
|
SRCS += opt_param.h cryptodev_if.h bus_if.h device_if.h
|
2013-11-25 07:38:45 +00:00
|
|
|
SRCS += opt_ddb.h
|
2014-03-06 00:37:16 +00:00
|
|
|
|
2002-10-16 14:31:34 +00:00
|
|
|
.include <bsd.kmod.mk>
|