blob: d4229d00b681182bd9be777a254e9685dc82b7f9 (
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
44
45
46
47
48
49
50
|
/*
* Copyright (C) 2007-2010 Xagasoft, All rights reserved.
*
* This file is part of the libbu++ library and is released under the
* terms of the license contained in the file LICENSE.
*/
#ifndef BU_MD5_H
#define BU_MD5_H
#include "bu/cryptohash.h"
namespace Bu
{
/**
* Class for easily calculating MD5 sums of just about any data.
*@author Mike Buland
*/
class Md5 : public Bu::CryptoHash
{
public:
/** Build an MD5 sum builder. */
Md5();
/** Deconstruct */
virtual ~Md5();
virtual void reset();
virtual void setSalt( const Bu::FString &sSalt );
virtual void addData( const void *sData, int iSize );
using Bu::CryptoHash::addData;
virtual FString getResult();
virtual void writeResult( Bu::Stream &sOut );
virtual FString getHexResult();
private:
/**
* Compute one block of input data.
*/
void compBlock( long *x, long *lsum );
void compCap( long *sumout );
long inbuf[16];
long iFill;
long sum[4];
uint64_t iBytes;
};
};
#endif
|