2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2011-11-16 00:37:38 +00:00
|
|
|
#ifndef cmCryptoHash_h
|
|
|
|
#define cmCryptoHash_h
|
|
|
|
|
2016-11-25 21:10:40 +00:00
|
|
|
#include <cmConfigure.h> // IWYU pragma: keep
|
2016-09-01 18:05:48 +00:00
|
|
|
|
2016-11-25 21:10:40 +00:00
|
|
|
#include <stddef.h>
|
2016-09-01 18:59:28 +00:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2011-11-16 15:04:41 +00:00
|
|
|
|
2016-11-25 21:10:40 +00:00
|
|
|
#include "cm_auto_ptr.hxx"
|
|
|
|
|
2016-08-10 07:54:49 +00:00
|
|
|
/**
|
|
|
|
* @brief Abstract base class for cryptographic hash generators
|
|
|
|
*/
|
2011-11-16 00:37:38 +00:00
|
|
|
class cmCryptoHash
|
|
|
|
{
|
|
|
|
public:
|
2016-11-03 15:33:43 +00:00
|
|
|
enum Algo
|
|
|
|
{
|
|
|
|
AlgoMD5,
|
|
|
|
AlgoSHA1,
|
|
|
|
AlgoSHA224,
|
|
|
|
AlgoSHA256,
|
|
|
|
AlgoSHA384,
|
2016-11-10 21:31:34 +00:00
|
|
|
AlgoSHA512,
|
|
|
|
AlgoSHA3_224,
|
|
|
|
AlgoSHA3_256,
|
|
|
|
AlgoSHA3_384,
|
|
|
|
AlgoSHA3_512
|
2016-11-03 15:33:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
cmCryptoHash(Algo algo);
|
|
|
|
~cmCryptoHash();
|
2016-08-10 09:30:06 +00:00
|
|
|
|
2016-08-10 07:54:49 +00:00
|
|
|
/// @brief Returns a new hash generator of the requested type
|
|
|
|
/// @arg algo Hash type name. Supported hash types are
|
2016-11-10 21:31:34 +00:00
|
|
|
/// MD5, SHA1, SHA224, SHA256, SHA384, SHA512,
|
|
|
|
/// SHA3_224, SHA3_256, SHA3_384, SHA3_512
|
2016-08-10 07:54:49 +00:00
|
|
|
/// @return A valid auto pointer if algo is supported or
|
|
|
|
/// an invalid/NULL pointer otherwise
|
2016-06-28 14:17:52 +00:00
|
|
|
static CM_AUTO_PTR<cmCryptoHash> New(const char* algo);
|
2016-08-10 09:30:06 +00:00
|
|
|
|
2016-08-10 08:35:19 +00: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 09:30:06 +00:00
|
|
|
|
2016-08-10 08:35:19 +00: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 09:30:06 +00: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 07:54:49 +00: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-07 20:06:13 +00:00
|
|
|
std::string HashString(const std::string& input);
|
2016-08-10 09:30:06 +00:00
|
|
|
|
2016-08-10 07:54:49 +00: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-07 20:06:13 +00:00
|
|
|
std::string HashFile(const std::string& file);
|
2016-05-16 14:34:04 +00:00
|
|
|
|
2016-11-03 15:33:43 +00:00
|
|
|
void Initialize();
|
|
|
|
void Append(void const*, size_t);
|
|
|
|
void Append(std::string const& str);
|
|
|
|
std::vector<unsigned char> Finalize();
|
|
|
|
std::string FinalizeHex();
|
2016-05-16 14:34:04 +00:00
|
|
|
|
2016-11-03 15:33:43 +00:00
|
|
|
private:
|
|
|
|
unsigned int Id;
|
|
|
|
struct rhash_context* CTX;
|
2011-11-16 00:37:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|