class Zilliqa::Crypto::Signature

Attributes

r[R]
s[R]

Public Class Methods

new(r, s) click to toggle source
# File lib/zilliqa/crypto/schnorr.rb, line 137
def initialize(r, s)
  @r = r
  @s = s
end

Public Instance Methods

to_s() click to toggle source
# File lib/zilliqa/crypto/schnorr.rb, line 142
def to_s
  "#{@r}#{@s}"
end