Bitcoin Core 28.99.0
P2P Digital Currency
|
#include <pubkey.h>
#include <script/interpreter.h>
#include <script/script.h>
#include <script/solver.h>
#include <span.h>
#include <algorithm>
#include <cassert>
#include <string>
Go to the source code of this file.
Typedefs | |
typedef std::vector< unsigned char > | valtype |
Functions | |
std::string | GetTxnOutputType (TxoutType t) |
Get the name of a TxoutType as a string. More... | |
static bool | MatchPayToPubkey (const CScript &script, valtype &pubkey) |
static bool | MatchPayToPubkeyHash (const CScript &script, valtype &pubkeyhash) |
static constexpr bool | IsSmallInteger (opcodetype opcode) |
Test for "small positive integer" script opcodes - OP_1 through OP_16. More... | |
static std::optional< int > | GetScriptNumber (opcodetype opcode, valtype data, int min, int max) |
Retrieve a minimally-encoded number in range [min,max] from an (opcode, data) pair, whether it's OP_n or through a push. More... | |
static bool | MatchMultisig (const CScript &script, int &required_sigs, std::vector< valtype > &pubkeys) |
std::optional< std::pair< int, std::vector< Span< const unsigned char > > > > | MatchMultiA (const CScript &script) |
TxoutType | Solver (const CScript &scriptPubKey, std::vector< std::vector< unsigned char > > &vSolutionsRet) |
Parse a scriptPubKey and identify script type for standard scripts. More... | |
CScript | GetScriptForRawPubKey (const CPubKey &pubKey) |
Generate a P2PK script for the given pubkey. More... | |
CScript | GetScriptForMultisig (int nRequired, const std::vector< CPubKey > &keys) |
Generate a multisig script. More... | |
typedef std::vector<unsigned char> valtype |
Definition at line 16 of file solver.cpp.
Generate a multisig script.
Definition at line 218 of file solver.cpp.
Generate a P2PK script for the given pubkey.
Definition at line 213 of file solver.cpp.
|
static |
Retrieve a minimally-encoded number in range [min,max] from an (opcode, data) pair, whether it's OP_n or through a push.
Definition at line 66 of file solver.cpp.
std::string GetTxnOutputType | ( | TxoutType | t | ) |
Get the name of a TxoutType as a string.
Definition at line 18 of file solver.cpp.
|
staticconstexpr |
Test for "small positive integer" script opcodes - OP_1 through OP_16.
Definition at line 59 of file solver.cpp.
|
static |
Definition at line 85 of file solver.cpp.
Definition at line 36 of file solver.cpp.
TxoutType Solver | ( | const CScript & | scriptPubKey, |
std::vector< std::vector< unsigned char > > & | vSolutionsRet | ||
) |
Parse a scriptPubKey and identify script type for standard scripts.
If successful, returns script type and parsed pubkeys or hashes, depending on the type. For example, for a P2SH script, vSolutionsRet will contain the script hash, for P2PKH it will contain the key hash, etc.
[in] | scriptPubKey | Script to parse |
[out] | vSolutionsRet | Vector of parsed pubkeys and hashes |
Definition at line 141 of file solver.cpp.