summaryrefslogtreecommitdiff
path: root/sys/modules/crypto
diff options
context:
space:
mode:
authorMarcel Moolenaar <marcel@FreeBSD.org>2014-03-06 00:37:16 +0000
committerMarcel Moolenaar <marcel@FreeBSD.org>2014-03-06 00:37:16 +0000
commit6a3645bbb90ce771e075e96a754dece0d91484ef (patch)
treecf2f76791c8b9a012dae42f98365083745800694 /sys/modules/crypto
parent41de1082f449920287d655fb4783e55f496e9ac0 (diff)
downloadsrc-test2-6a3645bbb90ce771e075e96a754dece0d91484ef.tar.gz
src-test2-6a3645bbb90ce771e075e96a754dece0d91484ef.zip
Notes
Diffstat (limited to 'sys/modules/crypto')
-rw-r--r--sys/modules/crypto/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/modules/crypto/Makefile b/sys/modules/crypto/Makefile
index 175c28972d15..ba8016fa4783 100644
--- a/sys/modules/crypto/Makefile
+++ b/sys/modules/crypto/Makefile
@@ -3,19 +3,22 @@
.PATH: ${.CURDIR}/../../opencrypto
.PATH: ${.CURDIR}/../../crypto
.PATH: ${.CURDIR}/../../crypto/blowfish
+.PATH: ${.CURDIR}/../../crypto/camellia
.PATH: ${.CURDIR}/../../crypto/des
.PATH: ${.CURDIR}/../../crypto/rijndael
.PATH: ${.CURDIR}/../../crypto/sha2
-.PATH: ${.CURDIR}/../../crypto/camellia
+.PATH: ${.CURDIR}/../../crypto/siphash
KMOD = crypto
SRCS = crypto.c cryptodev_if.c
SRCS += criov.c cryptosoft.c xform.c
SRCS += cast.c cryptodeflate.c rmd160.c rijndael-alg-fst.c rijndael-api.c
SRCS += skipjack.c bf_enc.c bf_ecb.c bf_skey.c
+SRCS += camellia.c camellia-api.c
SRCS += des_ecb.c des_enc.c des_setkey.c
SRCS += sha1.c sha2.c
+SRCS += siphash.c
SRCS += opt_param.h cryptodev_if.h bus_if.h device_if.h
SRCS += opt_ddb.h
-SRCS += camellia.c camellia-api.c
+
.include <bsd.kmod.mk>