Use MakeUnique<Db>(...)
[bitcoinplatinum.git] / src / crypto / ripemd160.h
blob38ea375c1fc1795d566be11d09550e5cb46864fc
1 // Copyright (c) 2014-2016 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 #ifndef BITCOIN_CRYPTO_RIPEMD160_H
6 #define BITCOIN_CRYPTO_RIPEMD160_H
8 #include <stdint.h>
9 #include <stdlib.h>
11 /** A hasher class for RIPEMD-160. */
12 class CRIPEMD160
14 private:
15 uint32_t s[5];
16 unsigned char buf[64];
17 uint64_t bytes;
19 public:
20 static const size_t OUTPUT_SIZE = 20;
22 CRIPEMD160();
23 CRIPEMD160& Write(const unsigned char* data, size_t len);
24 void Finalize(unsigned char hash[OUTPUT_SIZE]);
25 CRIPEMD160& Reset();
28 #endif // BITCOIN_CRYPTO_RIPEMD160_H