sandi-0.3.0: Data encoding library

Copyright(c) 2012 Magnus Therning
LicenseBSD3
Safe HaskellNone
LanguageHaskell98

Codec.Binary.Yenc

Description

Implementation based on the specification found at http://yence.sourceforge.net/docs/protocol/version1_3_draft.html.

Synopsis

Documentation

y_enc :: ByteString -> (ByteString, ByteString) Source

Encoding function.

This function allocates enough space to hold 20% more than the size of the indata (or at least 512 bytes) and then encodes as much as possible of the indata. That means there is a risk that the encoded data won't fit and in that case the second part of the pair contains the remainder of the indata.

>>> y_enc $ Data.ByteString.Char8.pack "foobar"
("\144\153\153\140\139\156","")
>>> snd $ y_enc $ Data.ByteString.Char8.pack $ Data.List.take 257 $ repeat '\x13'
"\DC3"

y_dec :: ByteString -> Either (ByteString, ByteString) (ByteString, ByteString) Source

Decoding function.

>>> y_dec $ Data.ByteString.pack [144,153,153,140,139,156]
Right ("foobar","")
>>> y_dec $ Data.ByteString.Char8.pack "=}"
Right ("\DC3","")

A Left value is only ever returned on decoding errors which, due to characteristics of the encoding, can never happen.

>>> y_dec $ Data.ByteString.Char8.pack "="
Right ("","=")

encode :: ByteString -> ByteString Source

Convenient function that calls y_enc repeatedly until the whole input data is encoded.