object CryptoInterpreter extends CryptoInterpreter

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CryptoInterpreter
  2. CryptoInterpreter
  3. AnyRef
  4. 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.

    Definition Classes
    CryptoInterpreter
  16. def opCheckMultiSigVerify(program: ExecutionInProgressScriptProgram): StartedScriptProgram

    Runs OP_CHECKMULTISIG with an OP_VERIFY afterwards

    Runs OP_CHECKMULTISIG with an OP_VERIFY afterwards

    Definition Classes
    CryptoInterpreter
  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

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

    Runs OP_CHECKSIG with an OP_VERIFY afterwards.

    Runs OP_CHECKSIG with an OP_VERIFY afterwards.

    Definition Classes
    CryptoInterpreter
  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.

    All of the signature checking words will only match signatures to the data after the most recently-executed OP_CODESEPARATOR.

    Definition Classes
    CryptoInterpreter
  21. def opHash160(program: ExecutionInProgressScriptProgram): StartedScriptProgram

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

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

    Definition Classes
    CryptoInterpreter
  22. def opHash256(program: ExecutionInProgressScriptProgram): StartedScriptProgram

    The input is hashed two times with SHA-256.

    The input is hashed two times with SHA-256.

    Definition Classes
    CryptoInterpreter
  23. def opRipeMd160(program: ExecutionInProgressScriptProgram): StartedScriptProgram

    The input is hashed using RIPEMD-160.

    The input is hashed using RIPEMD-160.

    Definition Classes
    CryptoInterpreter
  24. def opSha1(program: ExecutionInProgressScriptProgram): StartedScriptProgram

    The input is hashed using SHA-1.

    The input is hashed using SHA-1.

    Definition Classes
    CryptoInterpreter
  25. def opSha256(program: ExecutionInProgressScriptProgram): StartedScriptProgram

    The input is hashed using SHA-256.

    The input is hashed using SHA-256.

    Definition Classes
    CryptoInterpreter
  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 CryptoInterpreter

Inherited from AnyRef

Inherited from Any

Ungrouped