sealed abstract class CryptoInterpreter extends AnyRef

Created by chris on 1/6/16.

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CryptoInterpreter
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. 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.

  16. def opCheckMultiSigVerify(program: ExecutionInProgressScriptProgram): StartedScriptProgram

    Runs OP_CHECKMULTISIG with an OP_VERIFY afterwards

  17. 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

  18. def opCheckSigAdd(program: ExecutionInProgressScriptProgram): StartedScriptProgram
  19. def opCheckSigVerify(program: ExecutionInProgressScriptProgram): StartedScriptProgram

    Runs OP_CHECKSIG with an OP_VERIFY afterwards.

  20. 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.

  21. def opHash160(program: ExecutionInProgressScriptProgram): StartedScriptProgram

    The input is hashed twice: first with SHA-256 and then with RIPEMD-160.

  22. def opHash256(program: ExecutionInProgressScriptProgram): StartedScriptProgram

    The input is hashed two times with SHA-256.

  23. def opRipeMd160(program: ExecutionInProgressScriptProgram): StartedScriptProgram

    The input is hashed using RIPEMD-160.

  24. def opSha1(program: ExecutionInProgressScriptProgram): StartedScriptProgram

    The input is hashed using SHA-1.

  25. def opSha256(program: ExecutionInProgressScriptProgram): StartedScriptProgram

    The input is hashed using SHA-256.

  26. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped