![]() |
PIVX Core
5.6.99
P2P Digital Currency
|
#include "key_io.h"#include "base58.h"#include "script/script.h"#include <boost/variant/apply_visitor.hpp>#include <boost/variant/static_visitor.hpp>#include <assert.h>#include <string.h>#include <algorithm>Go to the source code of this file.
Namespaces | |
| KeyIO | |
Functions | |
| std::string | EncodeDestination (const CTxDestination &dest, bool isStaking, bool isExchange) |
| std::string | EncodeDestination (const CTxDestination &dest, const CChainParams::Base58Type addrType) |
| CTxDestination | DecodeDestination (const std::string &str) |
| CTxDestination | DecodeDestination (const std::string &str, bool &isStaking, bool &isExchange) |
| bool | IsValidDestinationString (const std::string &str, bool fStaking, const CChainParams ¶ms) |
| bool | IsValidDestinationString (const std::string &str, bool isStaking) |
| CKey | KeyIO::DecodeSecret (const std::string &str) |
| std::string | KeyIO::EncodeSecret (const CKey &key) |
| CExtKey | KeyIO::DecodeExtKey (const std::string &str) |
| std::string | KeyIO::EncodeExtKey (const CExtKey &key) |
| CExtPubKey | KeyIO::DecodeExtPubKey (const std::string &str) |
| std::string | KeyIO::EncodeExtPubKey (const CExtPubKey &key) |
| CTxDestination DecodeDestination | ( | const std::string & | str | ) |
Definition at line 101 of file key_io.cpp.
| CTxDestination DecodeDestination | ( | const std::string & | str, |
| bool & | isStaking, | ||
| bool & | isExchange | ||
| ) |
| std::string EncodeDestination | ( | const CTxDestination & | dest, |
| bool | isStaking, | ||
| bool | isExchange | ||
| ) |
Definition at line 91 of file key_io.cpp.
| std::string EncodeDestination | ( | const CTxDestination & | dest, |
| const CChainParams::Base58Type | addrType | ||
| ) |
| bool IsValidDestinationString | ( | const std::string & | str, |
| bool | fStaking, | ||
| const CChainParams & | params | ||
| ) |
Definition at line 113 of file key_io.cpp.
| bool IsValidDestinationString | ( | const std::string & | str, |
| bool | isStaking | ||
| ) |