encodeBase64 :: ArrayBuffer -> Base64Encodes an ArrayBuffer into the base64 representation thereof
decodeBase64 :: Base64 -> Maybe ArrayBufferAttempt to decode base64 content to the array buffer(byte) representation it stored internally.
newtype Base64
  = Base64 StringA boxed Base64 type to prevent accidental misuse
Eq Base64
Show Base64