decode(str)
Decodes string str with base64 and returns that value.
# File lib/xmlrpc/base64.rb, line 44 def Base64.decode(str) str.gsub(/\s+/, "").unpack("m")[0] end