diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2017-02-15 12:29:23 -0800 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2017-03-29 00:40:17 -0700 |
commit | e04326fe6652543dc26d90eba4a48fbdc935fd0c (patch) | |
tree | f918238064983b16c946d21f204a0be3888a54b7 /src/Makefile.am | |
parent | 663fbae7776b0c238f6f27d73811b4bc627d0b6b (diff) |
Add ChaCha20
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 8a32156884..89dd4c8f77 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -242,6 +242,8 @@ crypto_libbitcoin_crypto_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS) crypto_libbitcoin_crypto_a_SOURCES = \ crypto/aes.cpp \ crypto/aes.h \ + crypto/chacha20.h \ + crypto/chacha20.cpp \ crypto/common.h \ crypto/hmac_sha256.cpp \ crypto/hmac_sha256.h \ |