class CryptoconditionsRuby::Crypto::Base58Encoder

Public Instance Methods

decode(data) click to toggle source
# File lib/cryptoconditions_ruby/crypto.rb, line 46
def decode(data)
  CryptoconditionsRuby::Utils::Base58.decode(data)
end
encode(data) click to toggle source
# File lib/cryptoconditions_ruby/crypto.rb, line 42
def encode(data)
  CryptoconditionsRuby::Utils::Base58.encode(data)
end