blob: b9e098775c944cb3dfc91e5ea50bba8e7265b850 (
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
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
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/core/utils/crypto/KeyWrapAlgorithm.h>
#include <aws/core/utils/HashingUtils.h>
#include <aws/core/utils/EnumParseOverflowContainer.h>
#include <aws/core/Globals.h>
using namespace Aws::Utils;
namespace Aws
{
namespace Utils
{
namespace Crypto
{
namespace KeyWrapAlgorithmMapper
{
static const int keyWrapAlgorithm_KMS_HASH = HashingUtils::HashString("kms");
static const int keyWrapAlgorithm_KMS_CONTEXT_HASH = HashingUtils::HashString("kms+context");
static const int keyWrapAlgorithm_KeyWrap_HASH = HashingUtils::HashString("AESWrap");
static const int keyWrapAlgorithm_AES_GCM_HASH = HashingUtils::HashString("AES/GCM");
KeyWrapAlgorithm GetKeyWrapAlgorithmForName(const Aws::String& name)
{
int hashcode = HashingUtils::HashString(name.c_str());
if (hashcode == keyWrapAlgorithm_KMS_HASH)
{
return KeyWrapAlgorithm::KMS;
}
else if (hashcode == keyWrapAlgorithm_KMS_CONTEXT_HASH)
{
return KeyWrapAlgorithm::KMS_CONTEXT;
}
else if (hashcode == keyWrapAlgorithm_KeyWrap_HASH)
{
return KeyWrapAlgorithm::AES_KEY_WRAP;
}
else if (hashcode == keyWrapAlgorithm_AES_GCM_HASH)
{
return KeyWrapAlgorithm::AES_GCM;
}
assert(0);
return KeyWrapAlgorithm::NONE;
}
Aws::String GetNameForKeyWrapAlgorithm(KeyWrapAlgorithm enumValue)
{
switch (enumValue)
{
case KeyWrapAlgorithm::KMS:
return "kms";
case KeyWrapAlgorithm::KMS_CONTEXT:
return "kms+context";
case KeyWrapAlgorithm::AES_KEY_WRAP:
return "AESWrap";
case KeyWrapAlgorithm::AES_GCM:
return "AES/GCM";
default:
assert(0);
}
return "";
}
}//namespace KeyWrapAlgorithmMapper
}//namespace Crypto
}//namespace Utils
}//namespace Aws
|