6 #include "bitcoinaddress.h" 17 std::string privateKey;
19 std::string pubkeyHash;
20 std::string walletAddr;
34 const std::string &createTxid,
35 const std::string &unspentScriptPubKey,
const std::string &unspentTxid, uint32_t unspentVOut,
36 const std::string &unspentRedeemScript,
const std::string &privateKey,
41 const std::string& issueTxid,
int multiple,
42 const std::string& unspentScriptPubKey,
const std::string& unspentTxid, uint32_t unspentVOut,
43 double unspentQty,
const std::string &unspentRedeemScript,
49 bool VerifyMessage(
const std::string &strAddress,
const std::string &strSign,
53 std::string
SignMessage(
const std::string &strAddress,
const std::string &strMessage,
KeyPairs createKeyPairs(const IPrivateKeyHelper &privateHelper, const IWalletAddrHelper &addrHelper)
개인키를 생성한다.
Definition: hs_keys.cpp:45
string createStreamPublishTx(const string &streamKey, const string &streamValue, const string &createTxid, const string &unspentScriptPubKey, const string &unspentTxid, uint32_t unspentVOut, const string &unspentRedeemScript, const string &privateKey, const IPrivateKeyHelper &helper)
스트림키 발행을 위한 raw-tx 문자열을 생성한다.
Definition: hs_keys.cpp:285
Definition: keyshelper.h:26
string SignMessage(const string &strAddress, const string &strMessage, const IPrivateKeyHelper &privateHelper, const IWalletAddrHelper &addrHelper)
개인키를 이용하여 sign 된 메시지를 만든다.
Definition: hs_keys.cpp:438
bool VerifyMessage(const string &strAddress, const string &strSign, const string &strMessage, const IWalletAddrHelper &addrHelper)
개인키 또는 지갑주소로 sign 된 메시지를 검증 한다.
Definition: hs_keys.cpp:390
개인키 정보
Definition: hs_keys.h:16
string createAssetSendTx(const string &toAddr, double quantity, const string &issueTxid, int multiple, const string &unspentScriptPubKey, const string &unspentTxid, uint32_t unspentVOut, double unspentQty, const string &unspentRedeemScript, const string &privateKey, const IPrivateKeyHelper &privateHelper, const IWalletAddrHelper &walletHelper)
개인키 처리를 위한 정보 제공 인터페이스를 가져온다.
Definition: hs_keys.cpp:135
string walletAddrFromPubKey(const string &pubkeyStr, const IWalletAddrHelper &addrHelpler)
공개키로부터 지갑주소를 문자열로 얻는다.
Definition: hs_keys.cpp:371
Definition: keyshelper.h:30