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 chacha to rump libcrypto.



details:   https://anonhg.NetBSD.org/src/rev/8dfde72a75f6
branches:  trunk
changeset: 936341:8dfde72a75f6
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Sun Jul 26 04:03:45 2020 +0000

description:
Add chacha to rump libcrypto.

diffstat:

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

diffs (26 lines):

diff -r 4835dd858832 -r 8dfde72a75f6 sys/rump/kern/lib/libcrypto/Makefile
--- a/sys/rump/kern/lib/libcrypto/Makefile      Sun Jul 26 00:21:24 2020 +0000
+++ b/sys/rump/kern/lib/libcrypto/Makefile      Sun Jul 26 04:03:45 2020 +0000
@@ -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 @@
 # camellia
 SRCS+=  camellia.c camellia-api.c
 
+# ChaCha
+SRCS+= chacha_impl.c
+SRCS+= chacha_ref.c
+SRCS+= chacha_selftest.c
+
 # cast128
 SRCS+= cast128.c
 



Home | Main Index | Thread Index | Old Index