7a3f5d11fb
cperciva's libmd implementation is 5-30% faster The same was done for SHA256 previously in r263218 cperciva's implementation was lacking SHA-384 which I implemented, validated against OpenSSL and the NIST documentation Extend sbin/md5 to create sha384(1) Chase dependancies on sys/crypto/sha2/sha2.{c,h} and replace them with sha512{c.c,.h} Reviewed by: cperciva, des, delphij Approved by: secteam, bapt (mentor) MFC after: 2 weeks Sponsored by: ScaleEngine Inc. Differential Revision: https://reviews.freebsd.org/D3929
26 lines
782 B
Makefile
26 lines
782 B
Makefile
# $FreeBSD$
|
|
|
|
.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/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 rijndael-api-fst.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 sha256c.c sha512c.c
|
|
SRCS += siphash.c
|
|
SRCS += gmac.c gfmult.c
|
|
SRCS += opt_param.h cryptodev_if.h bus_if.h device_if.h
|
|
SRCS += opt_ddb.h
|
|
|
|
.include <bsd.kmod.mk>
|