diff options
| author | Pieter Wuille <[email protected]> | 2014-05-01 00:43:31 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2014-06-21 19:47:42 +0200 |
| commit | a5bc9c09177420bd1c6a1f9ece9ecfbe80c453fe (patch) | |
| tree | 80897d1583c290f1ec077e405cca070f41034eef /src/Makefile.am | |
| parent | Move crypto implementations to src/crypto/ (diff) | |
| download | discoin-a5bc9c09177420bd1c6a1f9ece9ecfbe80c453fe.tar.xz discoin-a5bc9c09177420bd1c6a1f9ece9ecfbe80c453fe.zip | |
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 bc65119a9..d583a7903 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 \ |