blob: 4c1fca4c39fea0762802cfa698fb54277cfe2fa4 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/*************************************************
* MD4 Source File *
* (C) 1999-2007 The Botan Project *
*************************************************/
#include <botan/md4.h>
#include <botan/bit_ops.h>
namespace Botan {
extern "C" void md4_core(u32bit[4], const byte[64], u32bit[16]);
/*************************************************
* MD4 Compression Function *
*************************************************/
void MD4::hash(const byte input[])
{
md4_core(digest, input, M);
}
/*************************************************
* Copy out the digest *
*************************************************/
void MD4::copy_out(byte output[])
{
for(u32bit j = 0; j != OUTPUT_LENGTH; ++j)
output[j] = get_byte(3 - (j % 4), digest[j/4]);
}
/*************************************************
* Clear memory of sensitive data *
*************************************************/
void MD4::clear() throw()
{
MDx_HashFunction::clear();
M.clear();
digest[0] = 0x67452301;
digest[1] = 0xEFCDAB89;
digest[2] = 0x98BADCFE;
digest[3] = 0x10325476;
}
}
|