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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/core/utils/logging/LogMacros.h>
#include <aws/core/utils/HashingUtils.h>
#include <aws/core/utils/StringUtils.h>
#include <aws/core/utils/base64/Base64.h>
#include <aws/core/utils/crypto/Sha256.h>
#include <aws/core/utils/crypto/Sha256HMAC.h>
#include <aws/core/utils/crypto/Sha1.h>
#include <aws/core/utils/crypto/MD5.h>
#include <aws/core/utils/crypto/CRC32.h>
#include <aws/core/utils/Outcome.h>
#include <aws/core/utils/memory/stl/AWSStringStream.h>
#include <aws/core/utils/memory/stl/AWSList.h>
#include <iomanip>
using namespace Aws::Utils;
using namespace Aws::Utils::Base64;
using namespace Aws::Utils::Crypto;
// internal buffers are fixed-size arrays, so this is harmless memory-management wise
static Aws::Utils::Base64::Base64 s_base64;
// Aws Glacier Tree Hash calculates hash value for each 1MB data
const static size_t TREE_HASH_ONE_MB = 1024 * 1024;
Aws::String HashingUtils::Base64Encode(const ByteBuffer& message)
{
return s_base64.Encode(message);
}
ByteBuffer HashingUtils::Base64Decode(const Aws::String& encodedMessage)
{
return s_base64.Decode(encodedMessage);
}
ByteBuffer HashingUtils::CalculateSHA256HMAC(const ByteBuffer& toSign, const ByteBuffer& secret)
{
Sha256HMAC hash;
return hash.Calculate(toSign, secret).GetResult();
}
ByteBuffer HashingUtils::CalculateSHA256(const Aws::String& str)
{
Sha256 hash;
return hash.Calculate(str).GetResult();
}
ByteBuffer HashingUtils::CalculateSHA256(Aws::IOStream& stream)
{
Sha256 hash;
return hash.Calculate(stream).GetResult();
}
/**
* This function is only used by HashingUtils::CalculateSHA256TreeHash() in this cpp file
* It's a helper function be used to compute the TreeHash defined at:
* http://docs.aws.amazon.com/amazonglacier/latest/dev/checksum-calculations.html
*/
static ByteBuffer TreeHashFinalCompute(Aws::List<ByteBuffer>& input)
{
Sha256 hash;
assert(input.size() != 0);
// O(n) time complexity of merging (n + n/2 + n/4 + n/8 +...+ 1)
while (input.size() > 1)
{
auto iter = input.begin();
// if only one element left, just left it there
while (std::next(iter) != input.end())
{
// if >= two elements
Aws::String str(reinterpret_cast<char*>(iter->GetUnderlyingData()), iter->GetLength());
// list erase returns iterator of next element next to the erased element or end() if erased the last one
// list insert inserts element before pos, here we erase two elements, and insert a new element
iter = input.erase(iter);
str.append(reinterpret_cast<char*>(iter->GetUnderlyingData()), iter->GetLength());
iter = input.erase(iter);
input.insert(iter, hash.Calculate(str).GetResult());
if (iter == input.end()) break;
} // while process to the last element
} // while the list has only one element left
return *(input.begin());
}
ByteBuffer HashingUtils::CalculateSHA256TreeHash(const Aws::String& str)
{
Sha256 hash;
if (str.size() == 0)
{
return hash.Calculate(str).GetResult();
}
Aws::List<ByteBuffer> input;
size_t pos = 0;
while (pos < str.size())
{
input.push_back(hash.Calculate(Aws::String(str, pos, TREE_HASH_ONE_MB)).GetResult());
pos += TREE_HASH_ONE_MB;
}
return TreeHashFinalCompute(input);
}
ByteBuffer HashingUtils::CalculateSHA256TreeHash(Aws::IOStream& stream)
{
Sha256 hash;
Aws::List<ByteBuffer> input;
auto currentPos = stream.tellg();
if (currentPos == std::ios::pos_type(-1))
{
currentPos = 0;
stream.clear();
}
stream.seekg(0, stream.beg);
Array<char> streamBuffer(TREE_HASH_ONE_MB);
while (stream.good())
{
stream.read(streamBuffer.GetUnderlyingData(), TREE_HASH_ONE_MB);
auto bytesRead = stream.gcount();
if (bytesRead > 0)
{
input.push_back(hash.Calculate(Aws::String(reinterpret_cast<char*>(streamBuffer.GetUnderlyingData()), static_cast<size_t>(bytesRead))).GetResult());
}
}
stream.clear();
stream.seekg(currentPos, stream.beg);
if (input.size() == 0)
{
return hash.Calculate("").GetResult();
}
return TreeHashFinalCompute(input);
}
Aws::String HashingUtils::HexEncode(const ByteBuffer& message)
{
Aws::String encoded;
encoded.reserve(2 * message.GetLength());
for (unsigned i = 0; i < message.GetLength(); ++i)
{
encoded.push_back("0123456789abcdef"[message[i] >> 4]);
encoded.push_back("0123456789abcdef"[message[i] & 0x0f]);
}
return encoded;
}
ByteBuffer HashingUtils::HexDecode(const Aws::String& str)
{
//number of characters should be even
assert(str.length() % 2 == 0);
assert(str.length() >= 2);
if(str.length() < 2 || str.length() % 2 != 0)
{
return ByteBuffer();
}
size_t strLength = str.length();
size_t readIndex = 0;
if(str[0] == '0' && (str[1] == 'x' || str[1] == 'X'))
{
strLength -= 2;
readIndex = 2;
}
ByteBuffer hexBuffer(strLength / 2);
size_t bufferIndex = 0;
for (size_t i = readIndex; i < str.length(); i += 2)
{
if(!StringUtils::IsAlnum(str[i]) || !StringUtils::IsAlnum(str[i + 1]))
{
//contains non-hex characters
assert(0);
}
char firstChar = str[i];
uint8_t distance = firstChar - '0';
if(isalpha(firstChar))
{
firstChar = static_cast<char>(toupper(firstChar));
distance = firstChar - 'A' + 10;
}
unsigned char val = distance * 16;
char secondChar = str[i + 1];
distance = secondChar - '0';
if(isalpha(secondChar))
{
secondChar = static_cast<char>(toupper(secondChar));
distance = secondChar - 'A' + 10;
}
val += distance;
hexBuffer[bufferIndex++] = val;
}
return hexBuffer;
}
ByteBuffer HashingUtils::CalculateSHA1(const Aws::String& str)
{
Sha1 hash;
return hash.Calculate(str).GetResult();
}
ByteBuffer HashingUtils::CalculateSHA1(Aws::IOStream& stream)
{
Sha1 hash;
return hash.Calculate(stream).GetResult();
}
ByteBuffer HashingUtils::CalculateMD5(const Aws::String& str)
{
MD5 hash;
return hash.Calculate(str).GetResult();
}
ByteBuffer HashingUtils::CalculateMD5(Aws::IOStream& stream)
{
MD5 hash;
return hash.Calculate(stream).GetResult();
}
ByteBuffer HashingUtils::CalculateCRC32(const Aws::String& str)
{
CRC32 hash;
return hash.Calculate(str).GetResult();
}
ByteBuffer HashingUtils::CalculateCRC32(Aws::IOStream& stream)
{
CRC32 hash;
return hash.Calculate(stream).GetResult();
}
ByteBuffer HashingUtils::CalculateCRC32C(const Aws::String& str)
{
CRC32C hash;
return hash.Calculate(str).GetResult();
}
ByteBuffer HashingUtils::CalculateCRC32C(Aws::IOStream& stream)
{
CRC32C hash;
return hash.Calculate(stream).GetResult();
}
int HashingUtils::HashString(const char* strToHash)
{
if (!strToHash)
return 0;
unsigned hash = 0;
while (char charValue = *strToHash++)
{
hash = charValue + 31 * hash;
}
return hash;
}
|