Popularity
8.0
Growing
Activity
4.8
-
31
7
8

Monthly Downloads: 254
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Data     Base64    
Latest version: v0.4.2

base64 alternatives and similar packages

Based on the "base64" category.
Alternatively, view base64 alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of base64 or a related project?

Add another 'base64' Package

README

Base64

Build Status Hackage

Base64 encoding and decodings.

For the companion optics and pattern synonyms, see base64-lens.

Summary

The following types are supported for both std, padded url-safe, and unpadded url-safe alphabets:

  • Data.ByteString
  • Data.ByteString.Lazy
  • Data.ByteString.Short
  • Data.Text
  • Data.Text.Lazy
  • Data.Text.Short

Additionally this library has

  • Better performance than base64-bytestring for encode and decode.
  • Optics for handling more complex structures with Base64 representations via the base64-lens package
  • Checks for both validity and correctness of Base64 and Base64url encodings
  • Rejects non-canonical encodings that do not roundtrip in other base64 libraries like ZE==.

There are no dependencies aside from those bundled with GHC, text-short, and the ghc-byteorder re-export.