/************************************************* * MD5 (IA-32) Source File * * (C) 1999-2007 Jack Lloyd * *************************************************/ #include #include namespace Botan { namespace { extern "C" void botan_md5_ia32_compress(u32bit[4], const byte[64], u32bit[16]); } /************************************************* * MD5 Compression Function * *************************************************/ void MD5_IA32::hash(const byte input[]) { botan_md5_ia32_compress(digest, input, M); } }