sealed abstract class CryptoInterpreter extends AnyRef
Created by chris on 1/6/16.
- Alphabetic
- By Inheritance
- CryptoInterpreter
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def opCheckMultiSig(program: ExecutionInProgressScriptProgram): StartedScriptProgram
Compares the first signature against each public key until it finds an ECDSA match.
Compares the first signature against each public key until it finds an ECDSA match. Starting with the subsequent public key, it compares the second signature against each remaining public key until it finds an ECDSA match. The process is repeated until all signatures have been checked or not enough public keys remain to produce a successful result. All signatures need to match a public key. Because public keys are not checked again if they fail any signature comparison, signatures must be placed in the scriptSig using the same order as their corresponding public keys were placed in the scriptPubKey or redeemScript. If all signatures are valid, 1 is returned, 0 otherwise. Due to a bug, one extra unused value is removed from the stack.
- def opCheckMultiSigVerify(program: ExecutionInProgressScriptProgram): StartedScriptProgram
Runs OP_CHECKMULTISIG with an OP_VERIFY afterwards
- def opCheckSig(program: ExecutionInProgressScriptProgram): StartedScriptProgram
The entire transaction's outputs, inputs, and script (from the most recently-executed OP_CODESEPARATOR to the end) are hashed.
The entire transaction's outputs, inputs, and script (from the most recently-executed OP_CODESEPARATOR to the end) are hashed. The signature used by OP_CHECKSIG must be a valid signature for this hash and public key. https://github.com/bitcoin/bitcoin/blob/528472111b4965b1a99c4bcf08ac5ec93d87f10f/src/script/interpreter.cpp#L880
- def opCheckSigAdd(program: ExecutionInProgressScriptProgram): StartedScriptProgram
- def opCheckSigVerify(program: ExecutionInProgressScriptProgram): StartedScriptProgram
Runs OP_CHECKSIG with an OP_VERIFY afterwards.
- def opCodeSeparator(program: ExecutionInProgressScriptProgram): StartedScriptProgram
All of the signature checking words will only match signatures to the data after the most recently-executed OP_CODESEPARATOR.
- def opHash160(program: ExecutionInProgressScriptProgram): StartedScriptProgram
The input is hashed twice: first with SHA-256 and then with RIPEMD-160.
- def opHash256(program: ExecutionInProgressScriptProgram): StartedScriptProgram
The input is hashed two times with SHA-256.
- def opRipeMd160(program: ExecutionInProgressScriptProgram): StartedScriptProgram
The input is hashed using RIPEMD-160.
- def opSha1(program: ExecutionInProgressScriptProgram): StartedScriptProgram
The input is hashed using SHA-1.
- def opSha256(program: ExecutionInProgressScriptProgram): StartedScriptProgram
The input is hashed using SHA-256.
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()