2014-08-27 11:22:33 -04:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2018-01-02 14:12:05 -03:00
|
|
|
// Copyright (c) 2009-2017 The Bitcoin Core developers
|
2014-09-09 05:00:42 -03:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2014-08-27 11:22:33 -04:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-11-03 12:16:40 -03:00
|
|
|
#ifndef BITCOIN_SCRIPT_SIGN_H
|
|
|
|
#define BITCOIN_SCRIPT_SIGN_H
|
2014-08-27 11:22:33 -04:00
|
|
|
|
2017-11-09 21:57:53 -03:00
|
|
|
#include <script/interpreter.h>
|
2014-08-27 11:22:33 -04:00
|
|
|
|
2018-03-17 23:19:09 -03:00
|
|
|
class CKey;
|
2014-11-04 15:06:20 -03:00
|
|
|
class CKeyID;
|
2014-08-27 11:22:33 -04:00
|
|
|
class CScript;
|
2018-03-17 23:19:09 -03:00
|
|
|
class CScriptID;
|
2014-08-27 11:22:33 -04:00
|
|
|
class CTransaction;
|
2014-09-09 05:00:42 -03:00
|
|
|
|
2014-08-27 11:22:33 -04:00
|
|
|
struct CMutableTransaction;
|
|
|
|
|
2018-03-17 23:19:09 -03:00
|
|
|
/** An interface to be implemented by keystores that support signing. */
|
|
|
|
class SigningProvider
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~SigningProvider() {}
|
|
|
|
virtual bool GetCScript(const CScriptID &scriptid, CScript& script) const =0;
|
|
|
|
virtual bool GetPubKey(const CKeyID &address, CPubKey& pubkey) const =0;
|
|
|
|
virtual bool GetKey(const CKeyID &address, CKey& key) const =0;
|
|
|
|
};
|
|
|
|
|
2014-11-04 15:06:20 -03:00
|
|
|
/** Virtual base class for signature creators. */
|
|
|
|
class BaseSignatureCreator {
|
|
|
|
protected:
|
2018-03-17 23:19:09 -03:00
|
|
|
const SigningProvider* m_provider;
|
2014-11-04 15:06:20 -03:00
|
|
|
|
|
|
|
public:
|
2018-03-17 23:19:09 -03:00
|
|
|
explicit BaseSignatureCreator(const SigningProvider* provider) : m_provider(provider) {}
|
|
|
|
const SigningProvider& Provider() const { return *m_provider; }
|
2014-11-04 15:06:20 -03:00
|
|
|
virtual ~BaseSignatureCreator() {}
|
|
|
|
virtual const BaseSignatureChecker& Checker() const =0;
|
|
|
|
|
|
|
|
/** Create a singular (non-script) signature. */
|
2016-03-31 09:54:58 -03:00
|
|
|
virtual bool CreateSig(std::vector<unsigned char>& vchSig, const CKeyID& keyid, const CScript& scriptCode, SigVersion sigversion) const =0;
|
2014-11-04 15:06:20 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
/** A signature creator for transactions. */
|
|
|
|
class TransactionSignatureCreator : public BaseSignatureCreator {
|
|
|
|
const CTransaction* txTo;
|
|
|
|
unsigned int nIn;
|
|
|
|
int nHashType;
|
2015-12-27 15:49:08 -03:00
|
|
|
CAmount amount;
|
2014-11-04 15:06:20 -03:00
|
|
|
const TransactionSignatureChecker checker;
|
|
|
|
|
|
|
|
public:
|
2018-03-17 23:19:09 -03:00
|
|
|
TransactionSignatureCreator(const SigningProvider* provider, const CTransaction* txToIn, unsigned int nInIn, const CAmount& amountIn, int nHashTypeIn=SIGHASH_ALL);
|
2017-06-20 15:58:56 -04:00
|
|
|
const BaseSignatureChecker& Checker() const override { return checker; }
|
|
|
|
bool CreateSig(std::vector<unsigned char>& vchSig, const CKeyID& keyid, const CScript& scriptCode, SigVersion sigversion) const override;
|
2016-03-31 09:54:58 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
class MutableTransactionSignatureCreator : public TransactionSignatureCreator {
|
|
|
|
CTransaction tx;
|
|
|
|
|
|
|
|
public:
|
2018-03-17 23:19:09 -03:00
|
|
|
MutableTransactionSignatureCreator(const SigningProvider* provider, const CMutableTransaction* txToIn, unsigned int nInIn, const CAmount& amountIn, int nHashTypeIn) : TransactionSignatureCreator(provider, &tx, nInIn, amountIn, nHashTypeIn), tx(*txToIn) {}
|
2014-11-04 15:06:20 -03:00
|
|
|
};
|
|
|
|
|
2016-06-29 05:48:51 -04:00
|
|
|
/** A signature creator that just produces 72-byte empty signatures. */
|
2015-05-01 10:21:06 -03:00
|
|
|
class DummySignatureCreator : public BaseSignatureCreator {
|
|
|
|
public:
|
2018-03-17 23:19:09 -03:00
|
|
|
explicit DummySignatureCreator(const SigningProvider* provider) : BaseSignatureCreator(provider) {}
|
2017-06-20 15:58:56 -04:00
|
|
|
const BaseSignatureChecker& Checker() const override;
|
|
|
|
bool CreateSig(std::vector<unsigned char>& vchSig, const CKeyID& keyid, const CScript& scriptCode, SigVersion sigversion) const override;
|
2016-03-31 09:54:58 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct SignatureData {
|
|
|
|
CScript scriptSig;
|
|
|
|
CScriptWitness scriptWitness;
|
|
|
|
|
|
|
|
SignatureData() {}
|
|
|
|
explicit SignatureData(const CScript& script) : scriptSig(script) {}
|
2015-05-01 10:21:06 -03:00
|
|
|
};
|
|
|
|
|
2014-11-04 15:06:20 -03:00
|
|
|
/** Produce a script signature using a generic signature creator. */
|
2016-03-31 09:54:58 -03:00
|
|
|
bool ProduceSignature(const BaseSignatureCreator& creator, const CScript& scriptPubKey, SignatureData& sigdata);
|
2014-11-04 15:06:20 -03:00
|
|
|
|
|
|
|
/** Produce a script signature for a transaction. */
|
2018-03-17 23:19:09 -03:00
|
|
|
bool SignSignature(const SigningProvider &provider, const CScript& fromPubKey, CMutableTransaction& txTo, unsigned int nIn, const CAmount& amount, int nHashType);
|
|
|
|
bool SignSignature(const SigningProvider &provider, const CTransaction& txFrom, CMutableTransaction& txTo, unsigned int nIn, int nHashType);
|
2014-08-27 11:22:33 -04:00
|
|
|
|
2014-11-04 15:06:20 -03:00
|
|
|
/** Combine two script signatures using a generic signature checker, intelligently, possibly with OP_0 placeholders. */
|
2016-03-31 09:54:58 -03:00
|
|
|
SignatureData CombineSignatures(const CScript& scriptPubKey, const BaseSignatureChecker& checker, const SignatureData& scriptSig1, const SignatureData& scriptSig2);
|
2014-11-04 15:06:20 -03:00
|
|
|
|
2016-03-31 09:54:58 -03:00
|
|
|
/** Extract signature data from a transaction, and insert it. */
|
|
|
|
SignatureData DataFromTransaction(const CMutableTransaction& tx, unsigned int nIn);
|
|
|
|
void UpdateTransaction(CMutableTransaction& tx, unsigned int nIn, const SignatureData& data);
|
2018-03-05 18:37:24 -03:00
|
|
|
void UpdateInput(CTxIn& input, const SignatureData& data);
|
2014-08-27 11:22:33 -04:00
|
|
|
|
2017-11-30 21:48:31 -03:00
|
|
|
/* Check whether we know how to sign for an output like this, assuming we
|
|
|
|
* have all private keys. While this function does not need private keys, the passed
|
2018-03-17 23:19:09 -03:00
|
|
|
* provider is used to look up public keys and redeemscripts by hash.
|
2017-11-30 21:48:31 -03:00
|
|
|
* Solvability is unrelated to whether we consider this output to be ours. */
|
2018-03-17 23:19:09 -03:00
|
|
|
bool IsSolvable(const SigningProvider& provider, const CScript& script);
|
2017-11-30 21:48:31 -03:00
|
|
|
|
2014-11-03 12:16:40 -03:00
|
|
|
#endif // BITCOIN_SCRIPT_SIGN_H
|