diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2014-09-25 08:23:32 +0200 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2014-09-25 08:23:32 +0200 |
commit | cf42c36e9963f9cf13704d8d74a9546f0db33d40 (patch) | |
tree | 858c8076671647abe299b1ef0125b7476006f726 /src/crypto/ripemd160.h | |
parent | ea69592a2f261dba37d551c0ac77e93ce00b37c3 (diff) |
Apply clang-format on crypto/* and compat/*
Diffstat (limited to 'src/crypto/ripemd160.h')
-rw-r--r-- | src/crypto/ripemd160.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/crypto/ripemd160.h b/src/crypto/ripemd160.h index 44bd4879a5..76197543be 100644 --- a/src/crypto/ripemd160.h +++ b/src/crypto/ripemd160.h @@ -9,7 +9,8 @@ #include <stdlib.h> /** A hasher class for RIPEMD-160. */ -class CRIPEMD160 { +class CRIPEMD160 +{ private: uint32_t s[5]; unsigned char buf[64]; @@ -19,7 +20,7 @@ public: static const size_t OUTPUT_SIZE = 20; CRIPEMD160(); - CRIPEMD160& Write(const unsigned char *data, size_t len); + CRIPEMD160& Write(const unsigned char* data, size_t len); void Finalize(unsigned char hash[OUTPUT_SIZE]); CRIPEMD160& Reset(); }; |