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