Loading [MathJax]/extensions/tex2jax.js
azure-storage-common
All Classes Functions Variables Pages
crypt.hpp
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4#pragma once
5
6#include <azure/core/base64.hpp>
7#include <azure/core/cryptography/hash.hpp>
8
9#include <cstdint>
10#include <string>
11#include <vector>
12
13namespace Azure { namespace Storage {
14
19 class Crc64Hash final : public Azure::Core::Cryptography::Hash {
20 public:
28 void Concatenate(const Crc64Hash& other);
29
30 ~Crc64Hash() override = default;
31
32 private:
33 uint64_t m_context = 0ULL;
34 uint64_t m_length = 0ULL;
35
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;
38 };
39
40 namespace _internal {
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);
46 } // namespace _internal
47}} // namespace Azure::Storage
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...