aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/rmd160/rmd160.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/hash/rmd160/rmd160.h')
-rw-r--r--src/hash/rmd160/rmd160.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hash/rmd160/rmd160.h b/src/hash/rmd160/rmd160.h
index 0544f21cc..939fe5668 100644
--- a/src/hash/rmd160/rmd160.h
+++ b/src/hash/rmd160/rmd160.h
@@ -21,7 +21,7 @@ class BOTAN_DLL RIPEMD_160 : public MDx_HashFunction
HashFunction* clone() const { return new RIPEMD_160; }
RIPEMD_160() : MDx_HashFunction(20, 64, false, true) { clear(); }
private:
- void hash(const byte[]);
+ void compress_n(const byte[], u32bit blocks);
void copy_out(byte[]);
SecureBuffer<u32bit, 16> M;