aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/md4_ia32/md4_ia32.cpp
blob: 8983995fcfae8f9a9449785e699a86c3bcd61d62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
* MD4 (IA-32)
* (C) 1999-2007 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/

#include <botan/md4_ia32.h>

namespace Botan {

extern "C" void botan_md4_ia32_compress(u32bit[4], const byte[64], u32bit[16]);

/*
* MD4 Compression Function
*/
void MD4_IA32::compress_n(const byte input[], size_t blocks)
   {
   for(size_t i = 0; i != blocks; ++i)
      {
      botan_md4_ia32_compress(digest, input, M);
      input += HASH_BLOCK_SIZE;
      }
   }

}