BSD-3-Clause licensed by Bryan O'Sullivan
This version can be pinned in stack with:base64-bytestring-1.0.0.2@sha256:629bea6c6bff97a3f4a20cb15e470e84c6d5438eb73135e37edeb3ebbe685970,2242

Fast base64 support Hackage version Stackage version Build Status

This package provides a Haskell library for working with base64-encoded data quickly and efficiently, using the ByteString type.

Performance

This library is written in pure Haskell, and it’s fast:

  • 250 MB/sec encoding

  • 200 MB/sec strict decoding (per RFC 4648)

  • 100 MB/sec lenient decoding

Get involved!

Please report bugs via the GitHub issue tracker.

Master Git repository:

  • git clone git://github.com/haskell/base64-bytestring.git

Authors

This library is written by Bryan O’Sullivan. It is maintained by Herbert Valerio Riedel and Mikhail Glushenkov.

Changes

1.0.0.2

  • Fixed a write past allocated memory in joinWith (potential security issue).

0.1.1.0 - 1.0.0.1

  • Changelog not recorded for these versions.

0.1.0.3

  • Fixed: wrong encoding table on big-endian systems.
  • Fixed: too big indices in encoding table construction.

0.1.0.2

  • Changelog not recorded up to this version.