diff options
author | markm <markm@FreeBSD.org> | 2000-07-07 09:03:59 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2000-07-07 09:03:59 +0000 |
commit | 3d0396c734b4176c3f33cb894ffeaeafdcc388f1 (patch) | |
tree | 9757babfbdeb7bf00ec479ddd1bd11a7ee9ee854 /sys/modules/random | |
parent | fffa6e77fa9ce6a51f57d97ca867024975537e8f (diff) | |
download | FreeBSD-src-3d0396c734b4176c3f33cb894ffeaeafdcc388f1.zip FreeBSD-src-3d0396c734b4176c3f33cb894ffeaeafdcc388f1.tar.gz |
Add entropy gathering code. This will work whether the module is
compiled in or loaded.
Diffstat (limited to 'sys/modules/random')
-rw-r--r-- | sys/modules/random/Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/modules/random/Makefile b/sys/modules/random/Makefile index 274a368..e8980fa 100644 --- a/sys/modules/random/Makefile +++ b/sys/modules/random/Makefile @@ -2,12 +2,10 @@ .PATH: ${.CURDIR}/../../dev/randomdev .PATH: ${.CURDIR}/../../crypto/blowfish -#.PATH: ${.CURDIR}/../../crypto/des KMOD = randomdev SRCS = bus_if.h device_if.h randomdev.c yarrow.c SRCS += bf_cbc.c bf_skey.c bf_enc.c CFLAGS += -I${.CURDIR}/../.. -#SRCS += sha1.c des_setkey.c des_ecb.c NOMAN = yes .include <bsd.kmod.mk> |