o

org.bitcoins.crypto

DummyECDigitalSignature

case object DummyECDigitalSignature extends ECDigitalSignature with Product with Serializable

The point of this case object is to help with fee estimation an average ECDigitalSignature is 72 bytes in size Technically this number can vary, 72 bytes is the most likely though according to https://en.bitcoin.it/wiki/Elliptic_Curve_Digital_Signature_Algorithm

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DummyECDigitalSignature
  2. Serializable
  3. Product
  4. Equals
  5. ECDigitalSignature
  6. NetworkElement
  7. AnyRef
  8. 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. def appendHashType(hashType: HashType): ECDigitalSignature
    Definition Classes
    ECDigitalSignature
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def byteSize: Long

    The size of the NetworkElement in bytes.

    The size of the NetworkElement in bytes.

    Definition Classes
    NetworkElement
  7. val bytes: ByteVector

    The byte representation of the NetworkElement

    The byte representation of the NetworkElement

    Definition Classes
    DummyECDigitalSignatureECDigitalSignatureNetworkElement
  8. def bytesLE: ByteVector

    The byte representation of the NetworkElement in little endian

    The byte representation of the NetworkElement in little endian

    Definition Classes
    NetworkElement
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  10. lazy val decodeSignature: (BigInt, BigInt)

    Decodes the digital signature into it's r and s points throws an exception if the given sequence of bytes is not a DER encoded signature

    Decodes the digital signature into it's r and s points throws an exception if the given sequence of bytes is not a DER encoded signature

    returns

    the (r,s) values for the elliptic curve digital signature

    Definition Classes
    ECDigitalSignature
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(other: Any): Boolean
    Definition Classes
    ECDigitalSignature → AnyRef → Any
  13. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. def hashTypeOpt: Option[HashType]
    Definition Classes
    ECDigitalSignature
  16. def hex: String

    The hexadecimal representation of the NetworkElement

    The hexadecimal representation of the NetworkElement

    Definition Classes
    NetworkElement
  17. def hexLE: String

    The hexadecimal representation of the NetworkElement in little endian

    The hexadecimal representation of the NetworkElement in little endian

    Definition Classes
    NetworkElement
  18. def isDEREncoded: Boolean

    Checks if this signature is encoded to DER correctly https://crypto.stackexchange.com/questions/1795/how-can-i-convert-a-der-ecdsa-signature-to-asn-1

    Checks if this signature is encoded to DER correctly https://crypto.stackexchange.com/questions/1795/how-can-i-convert-a-der-ecdsa-signature-to-asn-1

    returns

    boolean representing if the signature is a valid

    Definition Classes
    ECDigitalSignature
  19. def isEmpty: Boolean
    Definition Classes
    ECDigitalSignature
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. def isStrictEncoded: Boolean

    Checks if the signature is strictly der encoded as per BIP66 https://github.com/bitcoin/bips/blob/master/bip-0066.mediawiki

    Checks if the signature is strictly der encoded as per BIP66 https://github.com/bitcoin/bips/blob/master/bip-0066.mediawiki

    Definition Classes
    ECDigitalSignature
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. def productElementName(n: Int): String
    Definition Classes
    Product
  26. def productElementNames: Iterator[String]
    Definition Classes
    Product
  27. def r: BigInt

    Represents the r value found in a elliptic curve digital signature

    Represents the r value found in a elliptic curve digital signature

    Definition Classes
    DummyECDigitalSignatureECDigitalSignature
  28. def rBytes: ByteVector

    If we need to do serialization with the r value, you should use this.

    If we need to do serialization with the r value, you should use this. It will pad the byte vector so we have exactly 32 bytes

    Definition Classes
    ECDigitalSignature
  29. def s: BigInt

    If we need to do serialization with the s value, you should use this.

    If we need to do serialization with the s value, you should use this. It will pad the byte vector so we have exactly 32 bytes

    Definition Classes
    DummyECDigitalSignatureECDigitalSignature
  30. def sBytes: ByteVector
    Definition Classes
    ECDigitalSignature
  31. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  32. def toRawRS: ByteVector

    Creates a ByteVector with only the 32byte r value and 32 byte s value in the vector

    Creates a ByteVector with only the 32byte r value and 32 byte s value in the vector

    Definition Classes
    ECDigitalSignature
  33. def toString(): String
    Definition Classes
    ECDigitalSignature → AnyRef → Any
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from ECDigitalSignature

Inherited from NetworkElement

Inherited from AnyRef

Inherited from Any

Ungrouped