mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-11 09:49:04 +00:00
129 lines
3.6 KiB
C++
129 lines
3.6 KiB
C++
// NeL - MMORPG Framework <http://dev.ryzom.com/projects/nel/>
|
|
// Copyright (C) 2010 Winch Gate Property Limited
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as
|
|
// published by the Free Software Foundation, either version 3 of the
|
|
// License, or (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#ifndef NL_MD5_H
|
|
#define NL_MD5_H
|
|
|
|
#include "types_nl.h"
|
|
|
|
#include <string>
|
|
|
|
namespace NLMISC
|
|
{
|
|
|
|
class IStream;
|
|
|
|
|
|
|
|
// ****************************************************************************
|
|
/**
|
|
* MD5 Low level routines
|
|
* Largely inspired from the RSA Data Security works
|
|
* \author Matthieu Besson
|
|
* \author Nevrax France
|
|
* \date July 2004
|
|
*/
|
|
/* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
|
|
rights reserved.
|
|
|
|
License to copy and use this software is granted provided that it
|
|
is identified as the "RSA Data Security, Inc. MD5 Message-Digest
|
|
Algorithm" in all material mentioning or referencing this software
|
|
or this function.
|
|
|
|
License is also granted to make and use derivative works provided
|
|
that such works are identified as "derived from the RSA Data
|
|
Security, Inc. MD5 Message-Digest Algorithm" in all material
|
|
mentioning or referencing the derived work.
|
|
|
|
RSA Data Security, Inc. makes no representations concerning either
|
|
the merchantability of this software or the suitability of this
|
|
software for any particular purpose. It is provided "as is"
|
|
without express or implied warranty of any kind.
|
|
|
|
These notices must be retained in any copies of any part of this
|
|
documentation and/or software.
|
|
*/
|
|
|
|
// ****************************************************************************
|
|
struct CHashKeyMD5
|
|
{
|
|
uint8 Data[16];
|
|
|
|
void clear();
|
|
std::string toString() const;
|
|
bool fromString(const std::string &in);
|
|
bool operator==(const CHashKeyMD5 &in) const;
|
|
bool operator!=(const CHashKeyMD5 &in) const;
|
|
bool operator<(const CHashKeyMD5 &in) const;
|
|
|
|
void serial (NLMISC::IStream &s);
|
|
};
|
|
|
|
// ****************************************************************************
|
|
class CMD5Context
|
|
{
|
|
|
|
public:
|
|
|
|
void init();
|
|
void update (const uint8 *pBufIn, uint32 nBufLength);
|
|
void final (CHashKeyMD5 &out);
|
|
|
|
private:
|
|
|
|
uint32 State[4]; // state (ABCD)
|
|
uint32 Count[2]; // number of bits, modulo 2^64 (lsb first)
|
|
uint8 Buffer[64]; // input buffer
|
|
|
|
static uint8 Padding[64];
|
|
|
|
private:
|
|
|
|
void transform (uint32 state[4], const uint8 block[64]);
|
|
void encode (uint8 *output, const uint32 *input, uint len);
|
|
void decode (uint32 *output, const uint8 *input, uint len);
|
|
|
|
};
|
|
|
|
|
|
// ****************************************************************************
|
|
/**
|
|
* MD5 High level routines
|
|
* Largely inspired from the RSA Data Security works
|
|
* \author Matthieu Besson
|
|
* \author Nevrax France
|
|
* \date July 2004
|
|
*/
|
|
|
|
/*
|
|
inline bool operator <(const struct CHashKeyMD5 &a,const struct CHashKeyMD5 &b)
|
|
{
|
|
return a < b;
|
|
}
|
|
*/
|
|
|
|
// This function get a filename (it works with big files) and returns his MD5 hash key
|
|
CHashKeyMD5 getMD5(const std::string &filename);
|
|
|
|
// This function get a buffer with size and returns his MD5 hash key
|
|
CHashKeyMD5 getMD5(const uint8 *buffer, uint32 size);
|
|
|
|
}; // namespace NLMISC
|
|
|
|
#endif // NL_MD5_H
|
|
|
|
/* End of md5.h */
|