forked from trustwallet/wallet-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathData.h
83 lines (65 loc) · 2.19 KB
/
Data.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// SPDX-License-Identifier: Apache-2.0
//
// Copyright © 2017 Trust Wallet.
#pragma once
#include <cstdint>
#include <vector>
#include <string>
#include <array>
namespace TW {
using byte = std::uint8_t;
using Data = std::vector<byte>;
typedef std::vector<std::pair<Data, Data>> HashPubkeyList;
typedef std::vector<std::pair<Data, Data>> SignaturePubkeyList;
inline void pad_left(Data& data, const uint32_t size) {
data.insert(data.begin(), size - data.size(), 0);
}
template<typename It>
inline Data data(It&& begin, It&& end) {
return Data(begin, end);
}
template<typename Collection>
inline Data data_from(const Collection& collection) {
Data out;
out.reserve(collection.size());
for (auto&& cur : collection) {
out.emplace_back(uint8_t(cur));
}
return out;
}
inline Data data(const std::string& data) {
return Data(data.begin(), data.end());
}
inline Data data(const byte* data, size_t size) {
return Data(data, data + size);
}
inline void append(Data& data, const Data& suffix) {
data.insert(data.end(), suffix.begin(), suffix.end());
}
inline Data concat(const Data& data, const Data& suffix) {
Data out = data;
append(out, suffix);
return out;
}
inline void append(Data& data, const byte suffix) {
data.push_back(suffix);
}
/// Return a part (subdata) from the requested start position and size of the input data.
Data subData(const Data& data, size_t startIndex, size_t length);
/// Return the tail part (subdata) from the requested start position of the input data.
Data subData(const Data& data, size_t startIndex);
/// Determines if a byte array has a specific prefix.
template <typename T>
inline bool has_prefix(const Data& data, T& prefix) {
return std::equal(prefix.begin(), prefix.end(), data.begin(), data.begin() + std::min(data.size(), prefix.size()));
}
// Custom hash function for `Data` type.
struct DataHash {
std::size_t operator()(const Data& data) const {
// Create a string_view from the vector's data.
std::string_view ss(reinterpret_cast<const char*>(data.data()), data.size());
// Use the hash function for std::string_view
return std::hash<std::string_view>{}(ss);
}
};
} // namespace TW