forked from trustwallet/wallet-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDerivationPath.cpp
58 lines (49 loc) · 1.27 KB
/
DerivationPath.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
// SPDX-License-Identifier: Apache-2.0
//
// Copyright © 2017 Trust Wallet.
#include "DerivationPath.h"
#include <cstdio>
#include <stdexcept>
using namespace TW;
DerivationPath::DerivationPath(const std::string& string) {
const auto* it = string.data();
const auto* end = string.data() + string.size();
if (it != end && *it == 'm') {
++it;
}
if (it != end && *it == '/') {
++it;
}
while (it != end) {
uint32_t value;
if (std::sscanf(it, "%ud", &value) != 1) {
throw std::invalid_argument("Invalid component");
}
while (it != end && isdigit(*it)) {
++it;
}
auto hardened = (it != end && *it == '\'');
if (hardened) {
++it;
}
indices.emplace_back(value, hardened);
if (it == end) {
break;
}
if (*it != '/') {
throw std::invalid_argument("Components should be separated by '/'");
}
++it;
}
}
std::string DerivationPath::string() const noexcept {
std::string result = "m/";
for (auto& index : indices) {
result += index.string();
result += "/";
}
if (result.back() == '/') {
result.erase(result.end() - 1);
}
return result;
}