struct Secp256k1::ECDSASignature
- Secp256k1::ECDSASignature
- Struct
- Value
- Object
Overview
A basic ECDSA Signature containing a random point #r
and the
signature proof #s
.
See: Signature
for signature generation.
Properties:
sig = ECDSASignature.new r.x, proof
Defined in:
structs.crConstructors
Instance Method Summary
-
#r : BigInt
The
x
coordinate of a random pointR
. -
#r=(r : BigInt)
The
x
coordinate of a random pointR
. -
#s : BigInt
The signature proof of a message.
-
#s=(s : BigInt)
The signature proof of a message.
Constructor Detail
def self.new(r : BigInt, s : BigInt)
#