dataenc-0.11: Data encoding librarySource codeContentsIndex
Codec.Binary.DataEncoding
Description

Data encoding module.

It exposes several instances of DataCodec, one for each data encoding implemented in the library without causing the name clashing that would result from importing the individual encoding modules.

Synopsis
data DataCodec
encode :: DataCodec -> [Word8] -> String
decode :: DataCodec -> String -> Maybe [Word8]
decode' :: DataCodec -> String -> [Maybe Word8]
chop :: DataCodec -> Int -> String -> [String]
unchop :: DataCodec -> [String] -> String
base16 :: DataCodec
base32 :: DataCodec
base32Hex :: DataCodec
base64 :: DataCodec
base64Url :: DataCodec
base85 :: DataCodec
uu :: DataCodec
Documentation
data DataCodec Source
Used to group a specific data encoding's functions.
encode :: DataCodec -> [Word8] -> StringSource
decode :: DataCodec -> String -> Maybe [Word8]Source
decode' :: DataCodec -> String -> [Maybe Word8]Source
chop :: DataCodec -> Int -> String -> [String]Source
unchop :: DataCodec -> [String] -> StringSource
base16 :: DataCodecSource
Base16 encoding, see Codec.Binary.Base16 for more details on the individual functions.
base32 :: DataCodecSource
Base32 encoding, see Codec.Binary.Base32 for more details on the individual functions.
base32Hex :: DataCodecSource
Base32Hex encoding, see Codec.Binary.Base32Hex for more details on the individual functions.
base64 :: DataCodecSource
Base64 encoding, see Codec.Binary.Base64 for more details on the individual functions.
base64Url :: DataCodecSource
Base64Url encoding, see Codec.Binary.Base64Url for more details on the individual functions.
base85 :: DataCodecSource
Base85 encoding, see Codec.Binary.Base85 for more details on the individual functions.
uu :: DataCodecSource
Uuencoding, see Codec.Binary.Uu for more details on the individual functions.
Produced by Haddock version 2.1.0