From cf42c36e9963f9cf13704d8d74a9546f0db33d40 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Thu, 25 Sep 2014 08:23:32 +0200 Subject: Apply clang-format on crypto/* and compat/* --- src/crypto/ripemd160.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/crypto/ripemd160.h') 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 /** 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(); }; -- cgit v1.2.3