base64-bytestring: Fast base64 encoding and decoding for ByteStrings

[ bsd3, data, library ] [ Propose Tags ]

This package provides support for encoding and decoding binary data according to base64 (see also RFC 4648) for strict and lazy ByteStrings

For a fuller-featured and better-performing Base64 library, see the base64 package.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.0.0, 0.1.0.1, 0.1.0.2, 0.1.0.3, 0.1.1.0, 0.1.1.1, 0.1.1.3, 0.1.2.0, 1.0.0.0, 1.0.0.1, 1.0.0.2, 1.0.0.3, 1.1.0.0, 1.2.0.0, 1.2.0.1, 1.2.1.0
Change log CHANGELOG.md
Dependencies base (>=4 && <5), bytestring (>=0.9 && <0.11) [details]
License BSD-3-Clause
Copyright 2010-2020 Bryan O'Sullivan et al.
Author Bryan O'Sullivan <bos@serpentine.com>
Maintainer Herbert Valerio Riedel <hvr@gnu.org>, Mikhail Glushenkov <mikhail.glushenkov@gmail.com>, Emily Pillmore <emilypi@cohomolo.gy>
Category Data
Home page https://github.com/haskell/base64-bytestring
Bug tracker https://github.com/haskell/base64-bytestring/issues
Source repo head: git clone git://github.com/haskell/base64-bytestring
Uploaded by topos at 2020-08-14T01:02:13Z
Distributions Arch:1.2.1.0, Debian:1.0.0.3, Fedora:1.2.1.0, FreeBSD:1.0.0.1, LTSHaskell:1.2.1.0, NixOS:1.2.1.0, Stackage:1.2.1.0, openSUSE:1.2.1.0
Reverse Dependencies 370 direct, 3701 indirect [details]
Downloads 291066 total (330 in the last 30 days)
Rating 2.25 (votes: 2) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2020-08-14 [all 1 reports]

Readme for base64-bytestring-1.2.0.0

[back to package description]

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.