class CryptoconditionsRuby::Crypto::Base16Encoder
Public Instance Methods
decode(data)
click to toggle source
# File lib/cryptoconditions_ruby/crypto.rb, line 76 def decode(data) CryptoconditionsRuby::Utils::Base16.decode(data) end
encode(data)
click to toggle source
# File lib/cryptoconditions_ruby/crypto.rb, line 72 def encode(data) CryptoconditionsRuby::Utils::Base16.encode(data) end