base91-1.0.1: A Base91 Encoder & Decoder

Safe HaskellSafe-Inferred
LanguageHaskell98

Codec.Binary.Base91

Synopsis

Documentation

alphabet :: [Char] Source

The list of valid characters within a Base91-encoded string.

decode :: forall i o. (Foldable' i, Element i ~ Char, Applicative' o, Item o ~ Word8) => i -> o Source

Generically decodes a Word8 sequence from a Char sequence in Base91 form.

encode :: forall i o. (Foldable' i, Element i ~ Word8, Applicative' o, Item o ~ Char) => i -> o Source

Generically encodes a Word8 sequence to a Char sequence in Base91 form.