aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/md5_ia32/md5_ia32.cpp
blob: 15fa7d3dc124e24c85de28bea5a013dee44094b4 (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
27
28
29
30
/*************************************************
* MD5 (IA-32) Source File                        *
* (C) 1999-2007 Jack Lloyd                       *
*************************************************/

#include <botan/md5_ia32.h>
#include <botan/loadstor.h>

namespace Botan {

namespace {

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

}

/*************************************************
* MD5 Compression Function                       *
*************************************************/
void MD5_IA32::compress_n(const byte input[], u32bit blocks)
   {
   for(u32bit i = 0; i != blocks; ++i)
      {
      botan_md5_ia32_compress(digest, input, M);
      input += HASH_BLOCK_SIZE;
      }
   }

}