mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
7b78390015
* include adjustments * fix macOs build failure Signed-off-by: pasta <pasta@dashboost.org> * expcitly include array in spork.h * sort includes in most files
31 lines
973 B
C++
31 lines
973 B
C++
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
// Copyright (c) 2009-2015 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_KEY_IO_H
|
|
#define BITCOIN_KEY_IO_H
|
|
|
|
#include <key.h>
|
|
#include <pubkey.h>
|
|
#include <script/standard.h>
|
|
|
|
#include <string>
|
|
|
|
class CChainParams;
|
|
|
|
CKey DecodeSecret(const std::string& str);
|
|
std::string EncodeSecret(const CKey& key);
|
|
|
|
CExtKey DecodeExtKey(const std::string& str);
|
|
std::string EncodeExtKey(const CExtKey& extkey);
|
|
CExtPubKey DecodeExtPubKey(const std::string& str);
|
|
std::string EncodeExtPubKey(const CExtPubKey& extpubkey);
|
|
|
|
std::string EncodeDestination(const CTxDestination& dest);
|
|
CTxDestination DecodeDestination(const std::string& str);
|
|
bool IsValidDestinationString(const std::string& str);
|
|
bool IsValidDestinationString(const std::string& str, const CChainParams& params);
|
|
|
|
#endif // BITCOIN_KEY_IO_H
|