cmake/Source/cmUuid.h

43 lines
1.3 KiB
C
Raw Normal View History

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
2015-04-27 22:25:09 +02:00
2017-07-20 19:35:53 +02:00
#include "cmConfigure.h" // IWYU pragma: keep
2016-10-30 18:24:19 +01:00
#include <string>
#include <vector>
2015-04-27 22:25:09 +02:00
/** \class cmUuid
* \brief Utility class to generate UUIDs as defined by RFC4122
*
*/
class cmUuid
{
public:
std::string FromMd5(std::vector<unsigned char> const& uuidNamespace,
2016-07-09 11:21:54 +02:00
std::string const& name) const;
2015-04-27 22:25:09 +02:00
std::string FromSha1(std::vector<unsigned char> const& uuidNamespace,
2016-07-09 11:21:54 +02:00
std::string const& name) const;
2015-04-27 22:25:09 +02:00
bool StringToBinary(std::string const& input,
2016-07-09 11:21:54 +02:00
std::vector<unsigned char>& output) const;
2015-04-27 22:25:09 +02:00
private:
std::string ByteToHex(unsigned char byte) const;
void CreateHashInput(std::vector<unsigned char> const& uuidNamespace,
2016-07-09 11:21:54 +02:00
std::string const& name,
std::vector<unsigned char>& output) const;
2015-04-27 22:25:09 +02:00
std::string FromDigest(const unsigned char* digest,
2016-07-09 11:21:54 +02:00
unsigned char version) const;
2015-04-27 22:25:09 +02:00
bool StringToBinaryImpl(std::string const& input,
2016-07-09 11:21:54 +02:00
std::vector<unsigned char>& output) const;
2015-04-27 22:25:09 +02:00
std::string BinaryToString(const unsigned char* input) const;
bool IntFromHexDigit(char input, char& output) const;
};