class Laksa::Crypto::Signature

Attributes

r[R]
s[R]

Public Class Methods

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

Public Instance Methods

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