Codec.Binary.Base64Url
Description
Implemented as specified in RFC 4648 (http://tools.ietf.org/html/rfc4648).
Further documentation and information can be found at http://www.haskell.org/haskellwiki/Library/Data_encoding.
Documentation
encode :: [Word8] -> String
Encode data.
decode :: String -> Maybe [Word8]
Decode data (strict).
decode' :: String -> [Maybe Word8]
Decode data (lazy).
Arguments
:: Int | length of individual lines |
-> String | |
-> [String] |
unchop :: [String] -> String
Concatenate the strings into one long string.
See unchop
in Codec.Binary.Base64 for more details.