class String

Public Instance Methods

to_base32h() click to toggle source

Encodes the string to its Base32H binary representation.

@return [String] the string's Base32H representation

# File lib/base32h.rb, line 200
def to_base32h
  Base32H.encode_bin(self)
end