|
bool | anonymous_namespace{interpreter.cpp}::set_success (ScriptError *ret) |
|
bool | anonymous_namespace{interpreter.cpp}::set_error (ScriptError *ret, const ScriptError serror) |
|
bool | CastToBool (const valtype &vch) |
|
static void | popstack (std::vector< valtype > &stack) |
|
static bool | IsCompressedOrUncompressedPubKey (const valtype &vchPubKey) |
|
static bool | IsCompressedPubKey (const valtype &vchPubKey) |
|
static bool | IsValidSignatureEncoding (const std::vector< unsigned char > &sig) |
|
static bool | IsLowDERSignature (const valtype &vchSig, ScriptError *serror) |
|
static bool | IsDefinedHashtypeSignature (const valtype &vchSig) |
|
bool | CheckSignatureEncoding (const std::vector< unsigned char > &vchSig, unsigned int flags, ScriptError *serror) |
|
static bool | CheckPubKeyEncoding (const valtype &vchPubKey, unsigned int flags, const SigVersion &sigversion, ScriptError *serror) |
|
static bool | CheckMinimalPush (const valtype &data, opcodetype opcode) |
|
int | FindAndDelete (CScript &script, const CScript &b) |
|
bool | EvalScript (std::vector< std::vector< unsigned char > > &stack, const CScript &script, unsigned int flags, const BaseSignatureChecker &checker, SigVersion sigversion, ScriptError *serror) |
|
template<class T > |
uint256 | anonymous_namespace{interpreter.cpp}::GetPrevoutHash (const T &txTo) |
|
template<class T > |
uint256 | anonymous_namespace{interpreter.cpp}::GetSequenceHash (const T &txTo) |
|
template<class T > |
uint256 | anonymous_namespace{interpreter.cpp}::GetOutputsHash (const T &txTo) |
|
template<class T > |
uint256 | SignatureHash (const CScript &scriptCode, const T &txTo, unsigned int nIn, int nHashType, const CAmount &amount, SigVersion sigversion, const PrecomputedTransactionData *cache) |
|
static bool | VerifyWitnessProgram (const CScriptWitness &witness, int witversion, const std::vector< unsigned char > &program, unsigned int flags, const BaseSignatureChecker &checker, ScriptError *serror) |
|
bool | VerifyScript (const CScript &scriptSig, const CScript &scriptPubKey, const CScriptWitness *witness, unsigned int flags, const BaseSignatureChecker &checker, ScriptError *serror) |
|
static size_t | WitnessSigOps (int witversion, const std::vector< unsigned char > &witprogram, const CScriptWitness &witness) |
|
size_t | CountWitnessSigOps (const CScript &scriptSig, const CScript &scriptPubKey, const CScriptWitness *witness, unsigned int flags) |
|
static bool IsValidSignatureEncoding |
( |
const std::vector< unsigned char > & |
sig | ) |
|
|
static |
A canonical signature exists of: <30> <total len>=""> <02> <len r>=""> <R> <02> <len s>=""> <S> <hashtype> Where R and S are not negative (their first byte has its highest bit not set), and not excessively padded (do not start with a 0 byte, unless an otherwise negative number follows, in which case a single 0 byte is necessary and even required).
See https://bitcointalk.org/index.php?topic=8392.msg127623#msg127623
This function is consensus-critical since BIP66.