class CryptoconditionsRuby::Crypto::Base32Encoder

Public Instance Methods

decode(data) click to toggle source
# File lib/cryptoconditions_ruby/crypto.rb, line 66
def decode(data)
  Base32.decode(data)
end
encode(data) click to toggle source
# File lib/cryptoconditions_ruby/crypto.rb, line 62
def encode(data)
  Base32.encode(data)
end