svn commit: r212496 - head/sys/modules/crypto

Ivan Voras ivoras at FreeBSD.org
Sun Sep 12 16:28:26 UTC 2010


Author: ivoras
Date: Sun Sep 12 16:28:26 2010
New Revision: 212496
URL: http://svn.freebsd.org/changeset/base/212496

Log:
  List low-level Blowfish ECB module in the SRCS. It looks like it was dropped
  by accident (and it would be inconvenient to implement it otherwise because it
  uses internal non-published headers).
  
  MFC after:	1 week

Modified:
  head/sys/modules/crypto/Makefile

Modified: head/sys/modules/crypto/Makefile
==============================================================================
--- head/sys/modules/crypto/Makefile	Sun Sep 12 15:59:14 2010	(r212495)
+++ head/sys/modules/crypto/Makefile	Sun Sep 12 16:28:26 2010	(r212496)
@@ -12,7 +12,7 @@ KMOD	= crypto
 SRCS	= crypto.c cryptodev_if.c
 SRCS	+= criov.c cryptosoft.c xform.c
 SRCS	+= cast.c deflate.c rmd160.c rijndael-alg-fst.c rijndael-api.c
-SRCS	+= skipjack.c bf_enc.c bf_skey.c
+SRCS	+= skipjack.c bf_enc.c bf_ecb.c bf_skey.c
 SRCS	+= des_ecb.c des_enc.c des_setkey.c
 SRCS	+= sha1.c sha2.c
 SRCS	+= opt_param.h cryptodev_if.h bus_if.h device_if.h


More information about the svn-src-all mailing list