View Source XMLRPC.Base64 (XMLRPC v1.4.3)

Elixir datatype to store base64 value.

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

Summary

Functions

Create a new Base64 struct from an binary input.

Attempt to decode a Base64 encoded value.

Types

t()

@type t() :: %XMLRPC.Base64{raw: String.t()}

Functions

new(binary)

Create a new Base64 struct from an binary input.

to_binary(base64)

Attempt to decode a Base64 encoded value.

Note: thin wrapper around Base.decode64/1.