case class ECDigitalSignature(bytes: ByteVector) extends DigitalSignature with Product with Serializable
Created by chris on 2/26/16.
- Alphabetic
- By Inheritance
- ECDigitalSignature
- Serializable
- Product
- Equals
- DigitalSignature
- NetworkElement
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new ECDigitalSignature(bytes: ByteVector)
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
- def appendHashType(hashType: HashType): ECDigitalSignature
- Definition Classes
- ECDigitalSignature → DigitalSignature
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def byteSize: Long
The size of the NetworkElement in bytes.
The size of the NetworkElement in bytes.
- Definition Classes
- NetworkElement
- val bytes: ByteVector
The byte representation of the NetworkElement
The byte representation of the NetworkElement
- Definition Classes
- ECDigitalSignature → NetworkElement
- def bytesLE: ByteVector
The byte representation of the NetworkElement in little endian
The byte representation of the NetworkElement in little endian
- Definition Classes
- NetworkElement
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- 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
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(other: Any): Boolean
- Definition Classes
- ECDigitalSignature → Equals → 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 hashTypeOpt: Option[HashType]
- Definition Classes
- ECDigitalSignature → DigitalSignature
- def hex: String
The hexadecimal representation of the NetworkElement
The hexadecimal representation of the NetworkElement
- Definition Classes
- NetworkElement
- def hexLE: String
The hexadecimal representation of the NetworkElement in little endian
The hexadecimal representation of the NetworkElement in little endian
- Definition Classes
- NetworkElement
- 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
- def isEmpty: Boolean
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isStrictEncoded: Boolean
Checks if the signature is strictly der encoded as per BIP66 https://github.com/bitcoin/bips/blob/master/bip-0066.mediawiki
- 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()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def r: BigInt
Represents the r value found in a elliptic curve digital signature
- 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
- 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
- def sBytes: ByteVector
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toRawRS: ByteVector
Creates a ByteVector with only the 32byte r value and 32 byte s value in the vector
- def toString(): String
- Definition Classes
- ECDigitalSignature → 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()