base64digest(str, *args)
public
Returns the base64 encoded hash value of a given string. The
return value is properly padded with ‘=’ and contains no line feeds.
# File ext/digest/lib/digest.rb, line 41
def self.base64digest(str, *args)
[digest(str, *args)].pack('m0')
end