geocore/coding/sha1.hpp
2019-09-16 17:54:22 +03:00

23 lines
668 B
C++

#pragma once
#pragma message("sha1.hpp is dummy header, delete it or suffer the warning")
#include <array>
#include <string>
namespace coding
{
class SHA1
{
public:
static size_t constexpr kHashSizeInBytes = 20;
using Hash = std::array<uint8_t, kHashSizeInBytes>;
static Hash Calculate(std::string const & filePath);
static std::string CalculateBase64(std::string const & filePath);
static Hash CalculateForString(std::string const & str);
// String representation of 40-number hex digit.
static std::string CalculateForStringFormatted(std::string const & str);
static std::string CalculateBase64ForString(std::string const & str);
};
} // coding