Module Name: src
Committed By: riastradh
Date: Sun Jul 26 04:03:45 UTC 2020
Modified Files:
src/sys/rump/kern/lib/libcrypto: Makefile
Log Message:
Add chacha to rump libcrypto.
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/rump/kern/lib/libcrypto/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/rump/kern/lib/libcrypto/Makefile
diff -u src/sys/rump/kern/lib/libcrypto/Makefile:1.9 src/sys/rump/kern/lib/libcrypto/Makefile:1.10
--- src/sys/rump/kern/lib/libcrypto/Makefile:1.9 Sat Jul 25 22:40:08 2020
+++ src/sys/rump/kern/lib/libcrypto/Makefile Sun Jul 26 04:03:45 2020
@@ -1,8 +1,9 @@
-# $NetBSD: Makefile,v 1.9 2020/07/25 22:40:08 riastradh Exp $
+# $NetBSD: Makefile,v 1.10 2020/07/26 04:03:45 riastradh Exp $
#
.PATH: ${.CURDIR}/../../../../crypto/adiantum \
${.CURDIR}/../../../../crypto/aes \
+ ${.CURDIR}/../../../../crypto/chacha \
${.CURDIR}/../../../../crypto/blowfish \
${.CURDIR}/../../../../crypto/camellia \
${.CURDIR}/../../../../crypto/cast128 \
@@ -22,6 +23,11 @@ SRCS+= bf_ecb.c bf_enc.c bf_cbc.c bf_ske
# camellia
SRCS+= camellia.c camellia-api.c
+# ChaCha
+SRCS+= chacha_impl.c
+SRCS+= chacha_ref.c
+SRCS+= chacha_selftest.c
+
# cast128
SRCS+= cast128.c