diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2014-05-01 00:43:31 +0200 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2014-06-21 19:47:42 +0200 |
commit | a5bc9c09177420bd1c6a1f9ece9ecfbe80c453fe (patch) | |
tree | 80897d1583c290f1ec077e405cca070f41034eef /src/Makefile.am | |
parent | 13b5dfef64bbb77d583b2acc59e2b33f89645308 (diff) |
Add built-in RIPEMD-160 implementation
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 bc65119a92..d583a79032 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -77,6 +77,7 @@ BITCOIN_CORE_H = \ serialize.h \ crypto/sha2.h \ crypto/sha1.h \ + crypto/ripemd160.h \ sync.h \ threadsafety.h \ tinyformat.h \ @@ -156,6 +157,7 @@ libbitcoin_common_a_SOURCES = \ script.cpp \ crypto/sha1.cpp \ crypto/sha2.cpp \ + crypto/ripemd160.cpp \ sync.cpp \ util.cpp \ version.cpp \ |