2011-11-16 04:37:38 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
|
|
|
|
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
|
|
|
#ifndef cmCryptoHash_h
|
|
|
|
#define cmCryptoHash_h
|
|
|
|
|
2016-09-01 21:05:48 +03:00
|
|
|
#include <cmConfigure.h>
|
|
|
|
|
2016-06-28 17:17:52 +03:00
|
|
|
#include <cm_auto_ptr.hxx>
|
2016-09-01 21:59:28 +03:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2011-11-16 19:04:41 +04:00
|
|
|
|
2016-08-10 10:54:49 +03:00
|
|
|
/**
|
|
|
|
* @brief Abstract base class for cryptographic hash generators
|
|
|
|
*/
|
2011-11-16 04:37:38 +04:00
|
|
|
class cmCryptoHash
|
|
|
|
{
|
|
|
|
public:
|
2011-11-16 20:32:01 +04:00
|
|
|
virtual ~cmCryptoHash() {}
|
2016-08-10 12:30:06 +03:00
|
|
|
|
2016-08-10 10:54:49 +03:00
|
|
|
/// @brief Returns a new hash generator of the requested type
|
|
|
|
/// @arg algo Hash type name. Supported hash types are
|
|
|
|
/// MD5, SHA1, SHA224, SHA256, SHA384, SHA512
|
|
|
|
/// @return A valid auto pointer if algo is supported or
|
|
|
|
/// an invalid/NULL pointer otherwise
|
2016-06-28 17:17:52 +03:00
|
|
|
static CM_AUTO_PTR<cmCryptoHash> New(const char* algo);
|
2016-08-10 12:30:06 +03:00
|
|
|
|
2016-08-10 11:35:19 +03:00
|
|
|
/// @brief Converts a hex character to its binary value (4 bits)
|
|
|
|
/// @arg input Hex character [0-9a-fA-F].
|
|
|
|
/// @arg output Binary value of the input character (4 bits)
|
|
|
|
/// @return True if input was a valid hex character
|
|
|
|
static bool IntFromHexDigit(char input, char& output);
|
2016-08-10 12:30:06 +03:00
|
|
|
|
2016-08-10 11:35:19 +03:00
|
|
|
/// @brief Converts a byte hash to a sequence of hex character pairs
|
|
|
|
static std::string ByteHashToString(const std::vector<unsigned char>& hash);
|
2016-08-10 12:30:06 +03:00
|
|
|
|
|
|
|
/// @brief Calculates a binary hash from string input data
|
|
|
|
/// @return Binary hash vector
|
|
|
|
std::vector<unsigned char> ByteHashString(const std::string& input);
|
|
|
|
|
|
|
|
/// @brief Calculates a binary hash from file content
|
|
|
|
/// @see ByteHashString()
|
|
|
|
/// @return Non empty binary hash vector if the file was read successfully.
|
|
|
|
/// An empty vector otherwise.
|
|
|
|
std::vector<unsigned char> ByteHashFile(const std::string& file);
|
|
|
|
|
2016-08-10 10:54:49 +03:00
|
|
|
/// @brief Calculates a hash string from string input data
|
|
|
|
/// @return Sequence of hex characters pairs for each byte of the binary hash
|
2014-02-08 00:06:13 +04:00
|
|
|
std::string HashString(const std::string& input);
|
2016-08-10 12:30:06 +03:00
|
|
|
|
2016-08-10 10:54:49 +03:00
|
|
|
/// @brief Calculates a hash string from file content
|
|
|
|
/// @see HashString()
|
|
|
|
/// @return Non empty hash string if the file was read successfully.
|
|
|
|
/// An empty string otherwise.
|
2014-02-08 00:06:13 +04:00
|
|
|
std::string HashFile(const std::string& file);
|
2016-05-16 17:34:04 +03:00
|
|
|
|
2011-11-16 04:37:38 +04:00
|
|
|
protected:
|
2016-05-16 17:34:04 +03:00
|
|
|
virtual void Initialize() = 0;
|
|
|
|
virtual void Append(unsigned char const*, int) = 0;
|
2016-08-10 12:08:15 +03:00
|
|
|
virtual std::vector<unsigned char> Finalize() = 0;
|
2011-11-16 04:37:38 +04:00
|
|
|
};
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
class cmCryptoHashMD5 : public cmCryptoHash
|
2011-11-16 04:37:38 +04:00
|
|
|
{
|
|
|
|
struct cmsysMD5_s* MD5;
|
2016-05-16 17:34:04 +03:00
|
|
|
|
2011-11-16 04:37:38 +04:00
|
|
|
public:
|
|
|
|
cmCryptoHashMD5();
|
2016-06-27 22:25:27 +03:00
|
|
|
~cmCryptoHashMD5() CM_OVERRIDE;
|
2016-05-16 17:34:04 +03:00
|
|
|
|
2011-11-16 04:37:38 +04:00
|
|
|
protected:
|
2016-06-27 22:25:27 +03:00
|
|
|
void Initialize() CM_OVERRIDE;
|
|
|
|
void Append(unsigned char const* buf, int sz) CM_OVERRIDE;
|
2016-08-10 12:08:15 +03:00
|
|
|
std::vector<unsigned char> Finalize() CM_OVERRIDE;
|
2011-11-16 04:37:38 +04:00
|
|
|
};
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
#define cmCryptoHash_SHA_CLASS_DECL(SHA) \
|
|
|
|
class cmCryptoHash##SHA : public cmCryptoHash \
|
|
|
|
{ \
|
|
|
|
union _SHA_CTX* SHA; \
|
|
|
|
\
|
|
|
|
public: \
|
|
|
|
cmCryptoHash##SHA(); \
|
|
|
|
~cmCryptoHash##SHA(); \
|
|
|
|
\
|
|
|
|
protected: \
|
|
|
|
virtual void Initialize(); \
|
|
|
|
virtual void Append(unsigned char const* buf, int sz); \
|
2016-08-10 12:08:15 +03:00
|
|
|
virtual std::vector<unsigned char> Finalize(); \
|
2011-11-16 05:32:43 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
cmCryptoHash_SHA_CLASS_DECL(SHA1);
|
|
|
|
cmCryptoHash_SHA_CLASS_DECL(SHA224);
|
|
|
|
cmCryptoHash_SHA_CLASS_DECL(SHA256);
|
|
|
|
cmCryptoHash_SHA_CLASS_DECL(SHA384);
|
|
|
|
cmCryptoHash_SHA_CLASS_DECL(SHA512);
|
|
|
|
|
|
|
|
#undef cmCryptoHash_SHA_CLASS_DECL
|
|
|
|
|
2011-11-16 04:37:38 +04:00
|
|
|
#endif
|