-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Base64 encoding of byte sequences -- -- Base64 encoding of byte sequences @package base64-bytes @version 0.1.0.0 module Data.Bytes.Base64 -- | Encode a byte sequence with base64. encode :: Bytes -> ByteArray -- | Encode a byte sequence with base64 as a builder. builder :: Bytes -> Builder -- | Encode a byte sequence with base64. This augments a builder by first -- playing the original builder to paste the byte sequence and then -- performing the base64 encoding in-place on the buffer that had been -- pasted into. recodeBoundedBuilder :: Nat n -> Builder n -> Builder (4 * Div (n + 2) 3)