Method: HTTP::Base64.encode64

Defined in:
lib/http/base64.rb

.encode64(input) ⇒ Object

Equivalent to Base64.strict_encode64



8
9
10
# File 'lib/http/base64.rb', line 8

def encode64(input)
  [input].pack("m0")
end