Botan  1.10.9
md4_x86_32.h
Go to the documentation of this file.
1 /*
2 * MD4 (x86-32)
3 * (C) 1999-2007 Jack Lloyd
4 *
5 * Distributed under the terms of the Botan license
6 */
7 
8 #ifndef BOTAN_MD4_X86_32_H__
9 #define BOTAN_MD4_X86_32_H__
10 
11 #include <botan/md4.h>
12 
13 namespace Botan {
14 
15 /**
16 * MD4 using x86 assembly
17 */
18 class BOTAN_DLL MD4_X86_32 : public MD4
19  {
20  public:
21  HashFunction* clone() const { return new MD4_X86_32; }
22  private:
23  void compress_n(const byte[], size_t blocks);
24  };
25 
26 }
27 
28 #endif
Definition: md4.h:18
unsigned char byte
Definition: types.h:22
HashFunction * clone() const
Definition: md4_x86_32.h:21