2016-10-30 18:24:19 +01:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2021-09-14 00:13:48 +02:00
|
|
|
#pragma once
|
2012-02-18 12:40:36 +02:00
|
|
|
|
2018-01-26 17:06:56 +01:00
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
2012-02-18 12:40:36 +02:00
|
|
|
|
2020-02-01 23:06:01 +01:00
|
|
|
#include <cstddef>
|
|
|
|
#include <memory>
|
2016-10-30 18:24:19 +01:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2012-02-18 12:40:36 +02:00
|
|
|
|
2020-02-01 23:06:01 +01:00
|
|
|
#include <cm/string_view>
|
|
|
|
|
2016-10-30 18:24:19 +01:00
|
|
|
/**
|
|
|
|
* @brief Abstract base class for cryptographic hash generators
|
|
|
|
*/
|
2012-02-18 12:40:36 +02:00
|
|
|
class cmCryptoHash
|
|
|
|
{
|
|
|
|
public:
|
2017-04-14 19:02:05 +02:00
|
|
|
enum Algo
|
|
|
|
{
|
|
|
|
AlgoMD5,
|
|
|
|
AlgoSHA1,
|
|
|
|
AlgoSHA224,
|
|
|
|
AlgoSHA256,
|
|
|
|
AlgoSHA384,
|
|
|
|
AlgoSHA512,
|
|
|
|
AlgoSHA3_224,
|
|
|
|
AlgoSHA3_256,
|
|
|
|
AlgoSHA3_384,
|
|
|
|
AlgoSHA3_512
|
|
|
|
};
|
|
|
|
|
|
|
|
cmCryptoHash(Algo algo);
|
|
|
|
~cmCryptoHash();
|
2016-10-30 18:24:19 +01:00
|
|
|
|
2019-11-11 23:01:05 +01:00
|
|
|
cmCryptoHash(cmCryptoHash const&) = delete;
|
|
|
|
cmCryptoHash& operator=(cmCryptoHash const&) = delete;
|
|
|
|
|
2016-10-30 18:24:19 +01:00
|
|
|
/// @brief Returns a new hash generator of the requested type
|
|
|
|
/// @arg algo Hash type name. Supported hash types are
|
2017-04-14 19:02:05 +02:00
|
|
|
/// MD5, SHA1, SHA224, SHA256, SHA384, SHA512,
|
|
|
|
/// SHA3_224, SHA3_256, SHA3_384, SHA3_512
|
2016-10-30 18:24:19 +01:00
|
|
|
/// @return A valid auto pointer if algo is supported or
|
|
|
|
/// an invalid/NULL pointer otherwise
|
2020-02-01 23:06:01 +01:00
|
|
|
static std::unique_ptr<cmCryptoHash> New(cm::string_view algo);
|
2016-10-30 18:24:19 +01: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);
|
|
|
|
|
|
|
|
/// @brief Converts a byte hash to a sequence of hex character pairs
|
|
|
|
static std::string ByteHashToString(const std::vector<unsigned char>& hash);
|
|
|
|
|
|
|
|
/// @brief Calculates a binary hash from string input data
|
|
|
|
/// @return Binary hash vector
|
2020-02-01 23:06:01 +01:00
|
|
|
std::vector<unsigned char> ByteHashString(cm::string_view input);
|
2016-10-30 18:24:19 +01:00
|
|
|
|
|
|
|
/// @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);
|
|
|
|
|
|
|
|
/// @brief Calculates a hash string from string input data
|
|
|
|
/// @return Sequence of hex characters pairs for each byte of the binary hash
|
2020-02-01 23:06:01 +01:00
|
|
|
std::string HashString(cm::string_view input);
|
2016-10-30 18:24:19 +01: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.
|
2015-04-27 22:25:09 +02:00
|
|
|
std::string HashFile(const std::string& file);
|
2016-07-09 11:21:54 +02:00
|
|
|
|
2017-04-14 19:02:05 +02:00
|
|
|
void Initialize();
|
|
|
|
void Append(void const*, size_t);
|
2020-02-01 23:06:01 +01:00
|
|
|
void Append(cm::string_view input);
|
2017-04-14 19:02:05 +02:00
|
|
|
std::vector<unsigned char> Finalize();
|
|
|
|
std::string FinalizeHex();
|
2012-02-18 12:40:36 +02:00
|
|
|
|
2017-04-14 19:02:05 +02:00
|
|
|
private:
|
|
|
|
unsigned int Id;
|
|
|
|
struct rhash_context* CTX;
|
2012-02-18 12:40:36 +02:00
|
|
|
};
|