mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-30 02:12:45 +00:00
The /dev/random driver used Rijndael, not Blowfish, now.
This commit is contained in:
parent
02c986ab54
commit
add3f7f3df
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=74073
@ -433,9 +433,8 @@ dev/random/harvest.c standard
|
||||
dev/random/randomdev.c optional random
|
||||
dev/random/yarrow.c optional random
|
||||
dev/random/hash.c optional random
|
||||
crypto/blowfish/bf_cbc.c optional random
|
||||
crypto/blowfish/bf_enc.c optional random
|
||||
crypto/blowfish/bf_skey.c optional random
|
||||
crypto/rijndael/rijndael-alg-fst.c optional random
|
||||
crypto/rijndael/rijndael-api-fst.c optional random
|
||||
dev/ray/if_ray.c optional ray card
|
||||
dev/ray/if_ray.c optional ray pccard
|
||||
dev/rp/rp.c optional rp
|
||||
|
@ -1,11 +1,11 @@
|
||||
# $FreeBSD$
|
||||
|
||||
.PATH: ${.CURDIR}/../../dev/random
|
||||
.PATH: ${.CURDIR}/../../crypto/blowfish
|
||||
.PATH: ${.CURDIR}/../../crypto/rijndael
|
||||
|
||||
KMOD= random
|
||||
SRCS= randomdev.c yarrow.c hash.c
|
||||
SRCS+= bf_cbc.c bf_skey.c bf_enc.c
|
||||
SRCS+= rijndael-alg-fst.c rijndael-api-fst.c
|
||||
SRCS+= bus_if.h device_if.h vnode_if.h
|
||||
NOMAN= yes
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user