Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/rump/kern/lib/libcrypto Add the MODULE parts for blowfis...



details:   https://anonhg.NetBSD.org/src/rev/6807f7206d65
branches:  trunk
changeset: 325966:6807f7206d65
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Tue Jan 14 17:05:50 2014 +0000

description:
Add the MODULE parts for blowfish and des.

Add camellia algorithm.  (pooka@ says no lib version change required)

diffstat:

 sys/rump/kern/lib/libcrypto/Makefile |  10 +++++++---
 1 files changed, 7 insertions(+), 3 deletions(-)

diffs (33 lines):

diff -r 3ae1cfd5899d -r 6807f7206d65 sys/rump/kern/lib/libcrypto/Makefile
--- a/sys/rump/kern/lib/libcrypto/Makefile      Tue Jan 14 14:16:47 2014 +0000
+++ b/sys/rump/kern/lib/libcrypto/Makefile      Tue Jan 14 17:05:50 2014 +0000
@@ -1,8 +1,9 @@
-#      $NetBSD: Makefile,v 1.1 2010/12/05 20:11:22 pooka Exp $
+#      $NetBSD: Makefile,v 1.2 2014/01/14 17:05:50 pgoyette Exp $
 #
 
 .PATH: ${.CURDIR}/../../../../crypto/arc4                              \
        ${.CURDIR}/../../../../crypto/blowfish                          \
+       ${.CURDIR}/../../../../crypto/camellia                          \
        ${.CURDIR}/../../../../crypto/cast128                           \
        ${.CURDIR}/../../../../crypto/des                               \
        ${.CURDIR}/../../../../crypto/rijndael                          \
@@ -14,13 +15,16 @@
 SRCS+= arc4.c
 
 # blowfish
-SRCS+= bf_ecb.c bf_enc.c bf_cbc.c bf_skey.c
+SRCS+= bf_ecb.c bf_enc.c bf_cbc.c bf_skey.c bf_module.c
+
+# camellia
+SRCS+=  camellia.c camellia-api.c
 
 # cast128
 SRCS+= cast128.c
 
 # DES
-SRCS+= des_ecb.c des_setkey.c des_enc.c des_cbc.c
+SRCS+= des_ecb.c des_setkey.c des_enc.c des_cbc.c des_module.c
 
 # rijndael
 SRCS+= rijndael-alg-fst.c rijndael-api-fst.c rijndael.c



Home | Main Index | Thread Index | Old Index