XMLRPC.Base64

Elixir datatype to store base64 value

Note: See the Base module for other conversions in Elixir stdlib

Source

Summary

new(binary)

Create a new Base64 struct from an binary input

to_binary(base64)

Attempt to decode a Base64 encoded value

Types

t :: %XMLRPC.Base64{raw: String.t}

Functions

new(binary)

Create a new Base64 struct from an binary input

Source
to_binary(base64)

Attempt to decode a Base64 encoded value

Note: thin wrapper around Base.decode64/1

Source