blob: ecc1f0652978211e8a7c30cad9e14cfd40f4aac4 (
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
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/core/utils/crypto/Sha256HMAC.h>
#include <aws/core/utils/crypto/Factories.h>
#include <aws/core/utils/Outcome.h>
namespace Aws
{
namespace Utils
{
namespace Crypto
{
Sha256HMAC::Sha256HMAC() :
m_hmacImpl(CreateSha256HMACImplementation())
{
}
Sha256HMAC::~Sha256HMAC()
{
}
HashResult Sha256HMAC::Calculate(const Aws::Utils::ByteBuffer& toSign, const Aws::Utils::ByteBuffer& secret)
{
return m_hmacImpl->Calculate(toSign, secret);
}
} // namespace Crypto
} // namespace Utils
} // namespace Aws
|