Botan  2.1.0
Crypto and TLS for C++11
rmd160.h
Go to the documentation of this file.
1 /*
2 * RIPEMD-160
3 * (C) 1999-2007 Jack Lloyd
4 *
5 * Botan is released under the Simplified BSD License (see license.txt)
6 */
7 
8 #ifndef BOTAN_RIPEMD_160_H__
9 #define BOTAN_RIPEMD_160_H__
10 
11 #include <botan/mdx_hash.h>
12 
13 namespace Botan {
14 
15 /**
16 * RIPEMD-160
17 */
18 class BOTAN_DLL RIPEMD_160 final : public MDx_HashFunction
19  {
20  public:
21  std::string name() const override { return "RIPEMD-160"; }
22  size_t output_length() const override { return 20; }
23  HashFunction* clone() const override { return new RIPEMD_160; }
24 
25  void clear() override;
26 
27  RIPEMD_160() : MDx_HashFunction(64, false, true), m_M(16), m_digest(5)
28  { clear(); }
29  private:
30  void compress_n(const uint8_t[], size_t blocks) override;
31  void copy_out(uint8_t[]) override;
32 
33  secure_vector<uint32_t> m_M, m_digest;
34  };
35 
36 }
37 
38 #endif
std::string name() const override
Definition: rmd160.h:21
std::vector< T, secure_allocator< T >> secure_vector
Definition: secmem.h:121
HashFunction * clone() const override
Definition: rmd160.h:23
Definition: alg_id.cpp:13
size_t output_length() const override
Definition: rmd160.h:22