File: Base64.hs

package info (click to toggle)
haskell-haxr 3000.11.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 232 kB
  • sloc: haskell: 1,539; makefile: 16
file content (13 lines) | stat: -rw-r--r-- 262 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Network.XmlRpc.Base64 (
    encode,
    decode
) where

import           Data.ByteString
import qualified Data.ByteString.Base64 as B64

encode :: ByteString -> ByteString
encode = B64.encode

decode :: ByteString -> ByteString
decode = B64.decodeLenient