6#include <azure/core/base64.hpp>
7#include <azure/core/cryptography/hash.hpp>
13namespace Azure {
namespace Storage {
19 class Crc64Hash final :
public Azure::Core::Cryptography::Hash {
33 uint64_t m_context = 0ULL;
34 uint64_t m_length = 0ULL;
36 void OnAppend(
const uint8_t* data,
size_t length)
override;
37 std::vector<uint8_t> OnFinal(
const uint8_t* data,
size_t length)
override;
41 std::vector<uint8_t> HmacSha256(
42 const std::vector<uint8_t>& data,
43 const std::vector<uint8_t>& key);
44 std::string UrlEncodeQueryParameter(
const std::string& value);
45 std::string UrlEncodePath(
const std::string& value);
The class for the CRC64 hash function which maps binary data of an arbitrary length to small binary d...
Definition crypt.hpp:19
void Concatenate(const Crc64Hash &other)
Concatenates another Crc64 instance after this instance. This operation has the same effect as if the...