summaryrefslogtreecommitdiffstats
path: root/sys/modules/crypto
diff options
context:
space:
mode:
authormarkm <markm@FreeBSD.org>2002-10-16 14:31:34 +0000
committermarkm <markm@FreeBSD.org>2002-10-16 14:31:34 +0000
commit658a7ab8f2d91da8b2da85980436fd500accaf92 (patch)
tree15423431124b67e918f64aee072db86a94386607 /sys/modules/crypto
parent98e716a4fe3c11b8fa3a358acb490ca6d58d7ff6 (diff)
downloadFreeBSD-src-658a7ab8f2d91da8b2da85980436fd500accaf92.zip
FreeBSD-src-658a7ab8f2d91da8b2da85980436fd500accaf92.tar.gz
Module-ize the 'core' crypto stuff. This may still need to be compiled
into the kernel by default (if required), but other modules can now depend() on this. Fix inter-module dependancy. Earlier version OK'ed by: sam
Diffstat (limited to 'sys/modules/crypto')
-rw-r--r--sys/modules/crypto/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/sys/modules/crypto/Makefile b/sys/modules/crypto/Makefile
new file mode 100644
index 0000000..37541b0
--- /dev/null
+++ b/sys/modules/crypto/Makefile
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../opencrypto
+.PATH: ${.CURDIR}/../../crypto
+.PATH: ${.CURDIR}/../../crypto/blowfish
+.PATH: ${.CURDIR}/../../crypto/des
+.PATH: ${.CURDIR}/../../crypto/sha2
+.PATH: ${.CURDIR}/../../net
+
+KMOD = crypto
+SRCS = crypto.c
+SRCS += criov.c crmbuf.c cryptosoft.c xform.c
+SRCS += cast.c deflate.c rmd160.c rijndael.c skipjack.c
+SRCS += bf_enc.c bf_skey.c
+SRCS += des_ecb.c des_enc.c des_setkey.c
+SRCS += sha1.c sha2.c
+SRCS += zlib.c
+SRCS += opt_param.h
+
+.include <bsd.kmod.mk>
OpenPOWER on IntegriCloud