Whitespace
[amule.git] / src / libs / common / MD5Sum.h
blob51047b40dd8253032391eabd2895edafd2a08831
1 // This file is part of the aMule Project.
2 /*
3 Copyright (c) 2003-2011 aMule Team ( admin@amule.org / http://www.amule.org )
4 Copyright (c) 1991-2011, RSA Data Security, Inc. Created 1991. All
5 rights reserved.
7 License to copy and use this software is granted provided that it
8 is identified as the "RSA Data Security, Inc. MD5 Message-Digest
9 Algorithm" in all material mentioning or referencing this software
10 or this function.
12 License is also granted to make and use derivative works provided
13 that such works are identified as "derived from the RSA Data
14 Security, Inc. MD5 Message-Digest Algorithm" in all material
15 mentioning or referencing the derived work.
17 RSA Data Security, Inc. makes no representations concerning either
18 the merchantability of this software or the suitability of this
19 software for any particular purpose. It is provided "as is"
20 without express or implied warranty of any kind.
22 These notices must be retained in any copies of any part of this
23 documentation and/or software.
26 #ifndef MD5SUM_H
27 #define MD5SUM_H
30 class MD5Sum {
31 public:
32 MD5Sum();
33 MD5Sum(const wxString& sSource);
34 MD5Sum(const uint8* buffer, size_t len);
36 void Calculate(const wxString& sSource);
37 void Calculate(const uint8* buffer, size_t len);
39 wxString GetHash();
40 const uint8* GetRawHash() const { return m_rawhash; }
42 private:
43 wxString m_sHash;
44 uint8 m_rawhash[16];
47 #endif // MD5SUM_H
48 // File_checked_for_headers