-
Notifications
You must be signed in to change notification settings - Fork 990
/
Copy pathSignerKey.cpp
161 lines (147 loc) · 4.25 KB
/
SignerKey.cpp
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
// Copyright 2016 Stellar Development Foundation and contributors. Licensed
// under the Apache License, Version 2.0. See the COPYING file at the root
// of this distribution or at http://www.apache.org/licenses/LICENSE-2.0
#include "crypto/SignerKey.h"
#include "crypto/StrKey.h"
#include "xdr/Stellar-types.h"
#include "xdrpp/marshal.h"
#include <sodium/crypto_sign.h>
namespace stellar
{
std::string
KeyFunctions<SignerKey>::getKeyTypeName()
{
return "signer key";
}
bool
KeyFunctions<SignerKey>::getKeyVersionIsSupported(
strKey::StrKeyVersionByte keyVersion)
{
switch (keyVersion)
{
case strKey::STRKEY_PUBKEY_ED25519:
return true;
case strKey::STRKEY_PRE_AUTH_TX:
return true;
case strKey::STRKEY_HASH_X:
return true;
case strKey::STRKEY_SIGNED_PAYLOAD_ED25519:
return true;
default:
return false;
}
}
bool
KeyFunctions<SignerKey>::getKeyVersionIsVariableLength(
strKey::StrKeyVersionByte keyVersion)
{
switch (keyVersion)
{
case strKey::STRKEY_PUBKEY_ED25519:
return false;
case strKey::STRKEY_PRE_AUTH_TX:
return false;
case strKey::STRKEY_HASH_X:
return false;
case strKey::STRKEY_SIGNED_PAYLOAD_ED25519:
return true;
default:
throw std::invalid_argument("invalid signer key type");
}
}
typename KeyFunctions<SignerKey>::getKeyTypeEnum::type
KeyFunctions<SignerKey>::toKeyType(strKey::StrKeyVersionByte keyVersion)
{
switch (keyVersion)
{
case strKey::STRKEY_PUBKEY_ED25519:
return SignerKeyType::SIGNER_KEY_TYPE_ED25519;
case strKey::STRKEY_PRE_AUTH_TX:
return SignerKeyType::SIGNER_KEY_TYPE_PRE_AUTH_TX;
case strKey::STRKEY_HASH_X:
return SignerKeyType::SIGNER_KEY_TYPE_HASH_X;
case strKey::STRKEY_SIGNED_PAYLOAD_ED25519:
return SignerKeyType::SIGNER_KEY_TYPE_ED25519_SIGNED_PAYLOAD;
default:
throw std::invalid_argument("invalid signer key type");
}
}
strKey::StrKeyVersionByte
KeyFunctions<SignerKey>::toKeyVersion(SignerKeyType keyType)
{
switch (keyType)
{
case SignerKeyType::SIGNER_KEY_TYPE_ED25519:
return strKey::STRKEY_PUBKEY_ED25519;
case SignerKeyType::SIGNER_KEY_TYPE_PRE_AUTH_TX:
return strKey::STRKEY_PRE_AUTH_TX;
case SignerKeyType::SIGNER_KEY_TYPE_HASH_X:
return strKey::STRKEY_HASH_X;
case SignerKeyType::SIGNER_KEY_TYPE_ED25519_SIGNED_PAYLOAD:
return strKey::STRKEY_SIGNED_PAYLOAD_ED25519;
default:
throw std::invalid_argument("invalid signer key type");
}
}
uint256&
KeyFunctions<SignerKey>::getEd25519Value(SignerKey& key)
{
switch (key.type())
{
case SIGNER_KEY_TYPE_ED25519:
return key.ed25519();
default:
throw std::invalid_argument("invalid signer key type");
}
}
uint256 const&
KeyFunctions<SignerKey>::getEd25519Value(SignerKey const& key)
{
switch (key.type())
{
case SIGNER_KEY_TYPE_ED25519:
return key.ed25519();
default:
throw std::invalid_argument("invalid signer key type");
}
}
std::vector<uint8_t>
KeyFunctions<SignerKey>::getKeyValue(SignerKey const& key)
{
switch (key.type())
{
case SIGNER_KEY_TYPE_ED25519:
return xdr::xdr_to_opaque(key.ed25519());
case SIGNER_KEY_TYPE_PRE_AUTH_TX:
return xdr::xdr_to_opaque(key.preAuthTx());
case SIGNER_KEY_TYPE_HASH_X:
return xdr::xdr_to_opaque(key.hashX());
case SIGNER_KEY_TYPE_ED25519_SIGNED_PAYLOAD:
return xdr::xdr_to_opaque(key.ed25519SignedPayload());
default:
throw std::invalid_argument("invalid signer key type");
}
}
void
KeyFunctions<SignerKey>::setKeyValue(SignerKey& key,
std::vector<uint8_t> const& data)
{
switch (key.type())
{
case SIGNER_KEY_TYPE_ED25519:
xdr::xdr_from_opaque(data, key.ed25519());
break;
case SIGNER_KEY_TYPE_PRE_AUTH_TX:
xdr::xdr_from_opaque(data, key.preAuthTx());
break;
case SIGNER_KEY_TYPE_HASH_X:
xdr::xdr_from_opaque(data, key.hashX());
break;
case SIGNER_KEY_TYPE_ED25519_SIGNED_PAYLOAD:
xdr::xdr_from_opaque(data, key.ed25519SignedPayload());
break;
default:
throw std::invalid_argument("invalid signer key type");
}
}
}