#include <util/bip32.h>
#include <tinyformat.h>
#include <util/strencodings.h>
#include <cstdio>
#include <sstream>
Go to the source code of this file.
|
bool | ParseHDKeypath (const std::string &keypath_str, std::vector< uint32_t > &keypath) |
| Parse an HD keypaths like "m/7/0'/2000". More...
|
|
std::string | FormatHDKeypath (const std::vector< uint32_t > &path) |
|
std::string | WriteHDKeypath (const std::vector< uint32_t > &keypath) |
| Write HD keypaths as strings. More...
|
|
◆ FormatHDKeypath()
std::string FormatHDKeypath |
( |
const std::vector< uint32_t > & |
path | ) |
|
◆ ParseHDKeypath()
bool ParseHDKeypath |
( |
const std::string & |
keypath_str, |
|
|
std::vector< uint32_t > & |
keypath |
|
) |
| |
Parse an HD keypaths like "m/7/0'/2000".
Definition at line 13 of file bip32.cpp.
◆ WriteHDKeypath()
std::string WriteHDKeypath |
( |
const std::vector< uint32_t > & |
keypath | ) |
|
Write HD keypaths as strings.
Definition at line 66 of file bip32.cpp.