blob: 48612e8cf03980427b612d94d0501b0a5832fcb9 (
plain) (
blame)
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
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/core/utils/crypto/Sha256.h>
#include <aws/core/utils/Outcome.h>
#include <aws/core/utils/crypto/Factories.h>
using namespace Aws::Utils::Crypto;
Sha256::Sha256() :
m_hashImpl(CreateSha256Implementation())
{
}
Sha256::~Sha256()
{
}
HashResult Sha256::Calculate(const Aws::String& str)
{
return m_hashImpl->Calculate(str);
}
HashResult Sha256::Calculate(Aws::IStream& stream)
{
return m_hashImpl->Calculate(stream);
}
void Sha256::Update(unsigned char* buffer, size_t bufferSize)
{
return m_hashImpl->Update(buffer, bufferSize);
}
HashResult Sha256::GetHash()
{
return m_hashImpl->GetHash();
}
|