2002-10-16 14:31:34 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
.PATH: ${.CURDIR}/../../opencrypto
|
|
|
|
.PATH: ${.CURDIR}/../../crypto
|
|
|
|
.PATH: ${.CURDIR}/../../crypto/blowfish
|
|
|
|
.PATH: ${.CURDIR}/../../crypto/des
|
2005-03-11 17:24:46 +00:00
|
|
|
.PATH: ${.CURDIR}/../../crypto/rijndael
|
2002-10-16 14:31:34 +00:00
|
|
|
.PATH: ${.CURDIR}/../../crypto/sha2
|
|
|
|
.PATH: ${.CURDIR}/../../net
|
|
|
|
|
|
|
|
KMOD = crypto
|
|
|
|
SRCS = crypto.c
|
2003-12-15 21:49:41 +00:00
|
|
|
SRCS += criov.c cryptosoft.c xform.c
|
2005-03-11 17:24:46 +00:00
|
|
|
SRCS += cast.c deflate.c rmd160.c rijndael-alg-fst.c rijndael-api.c
|
|
|
|
SRCS += skipjack.c bf_enc.c bf_skey.c
|
2002-10-16 14:31:34 +00:00
|
|
|
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>
|