2002-10-16 10:31:34 -04:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
|
|
.PATH: ${.CURDIR}/../../opencrypto
|
|
|
|
|
.PATH: ${.CURDIR}/../../crypto
|
|
|
|
|
.PATH: ${.CURDIR}/../../crypto/blowfish
|
2014-03-05 19:37:16 -05:00
|
|
|
.PATH: ${.CURDIR}/../../crypto/camellia
|
2002-10-16 10:31:34 -04:00
|
|
|
.PATH: ${.CURDIR}/../../crypto/des
|
2005-03-11 12:24:46 -05:00
|
|
|
.PATH: ${.CURDIR}/../../crypto/rijndael
|
2002-10-16 10:31:34 -04:00
|
|
|
.PATH: ${.CURDIR}/../../crypto/sha2
|
2014-03-05 19:37:16 -05:00
|
|
|
.PATH: ${.CURDIR}/../../crypto/siphash
|
2002-10-16 10:31:34 -04:00
|
|
|
|
|
|
|
|
KMOD = crypto
|
2007-03-21 10:39:39 -04:00
|
|
|
SRCS = crypto.c cryptodev_if.c
|
2003-12-15 16:49:41 -05:00
|
|
|
SRCS += criov.c cryptosoft.c xform.c
|
2013-12-08 21:06:52 -05:00
|
|
|
SRCS += cast.c cryptodeflate.c rmd160.c rijndael-alg-fst.c rijndael-api.c
|
2010-09-12 12:28:26 -04:00
|
|
|
SRCS += skipjack.c bf_enc.c bf_ecb.c bf_skey.c
|
2014-03-05 19:37:16 -05:00
|
|
|
SRCS += camellia.c camellia-api.c
|
2002-10-16 10:31:34 -04:00
|
|
|
SRCS += des_ecb.c des_enc.c des_setkey.c
|
2014-03-15 21:55:30 -04:00
|
|
|
SRCS += sha1.c sha2.c sha256c.c
|
2014-03-05 19:37:16 -05:00
|
|
|
SRCS += siphash.c
|
2007-03-21 10:39:39 -04:00
|
|
|
SRCS += opt_param.h cryptodev_if.h bus_if.h device_if.h
|
2013-11-25 02:38:45 -05:00
|
|
|
SRCS += opt_ddb.h
|
2014-03-05 19:37:16 -05:00
|
|
|
|
2002-10-16 10:31:34 -04:00
|
|
|
.include <bsd.kmod.mk>
|