mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
I clearly didn't test the modules... add sha256c.c to the various
modules that included sha2.c...
This commit is contained in:
parent
8083f14fc2
commit
f225bcd157
4 changed files with 4 additions and 4 deletions
|
|
@ -16,7 +16,7 @@ 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 += sha1.c sha2.c sha256c.c
|
||||
SRCS += siphash.c
|
||||
SRCS += opt_param.h cryptodev_if.h bus_if.h device_if.h
|
||||
SRCS += opt_ddb.h
|
||||
|
|
|
|||
|
|
@ -6,6 +6,6 @@
|
|||
|
||||
KMOD= geom_bde
|
||||
SRCS= g_bde.c g_bde_crypt.c g_bde_lock.c g_bde_work.c
|
||||
SRCS+= rijndael-alg-fst.c rijndael-api-fst.c sha2.c
|
||||
SRCS+= rijndael-alg-fst.c rijndael-api-fst.c sha2.c sha256c.c
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ SRCS+= ivy.c
|
|||
.endif
|
||||
SRCS+= randomdev_soft.c yarrow.c hash.c
|
||||
SRCS+= random_harvestq.c live_entropy_sources.c rwfile.c
|
||||
SRCS+= rijndael-alg-fst.c rijndael-api-fst.c sha2.c
|
||||
SRCS+= rijndael-alg-fst.c rijndael-api-fst.c sha2.c sha256c.c
|
||||
SRCS+= bus_if.h device_if.h vnode_if.h opt_cpu.h opt_random.h
|
||||
|
||||
CFLAGS+= -I${.CURDIR}/../..
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ SRCS+= zmod_subr.c
|
|||
SRCS+= zutil.c
|
||||
|
||||
.PATH: ${.CURDIR}/../../crypto/sha2
|
||||
SRCS+= sha2.c
|
||||
SRCS+= sha2.c sha256c.c
|
||||
|
||||
.PATH: ${SUNW}/common/zfs
|
||||
.include "${SUNW}/uts/common/Makefile.files"
|
||||
|
|
|
|||
Loading…
Reference in a new issue