| CARVIEW |
Select Language
HTTP/1.1 200 OK
Connection: keep-alive
Server: nginx/1.24.0 (Ubuntu)
Content-Type: text/html; charset=utf-8
Cache-Control: public, max-age=300
Content-Encoding: gzip
Via: 1.1 varnish, 1.1 varnish
Accept-Ranges: bytes
Age: 0
Date: Fri, 16 Jan 2026 23:47:46 GMT
X-Served-By: cache-dfw-kdfw8210050-DFW, cache-bom-vanm7210021-BOM
X-Cache: MISS, MISS
X-Cache-Hits: 0, 0
X-Timer: S1768607266.454149,VS0,VE293
Vary: Accept, Accept-Encoding
transfer-encoding: chunked
z85: Implementation of the z85 binary codec
z85: Implementation of the z85 binary codec
Modules
- Data
- Attoparsec
- ByteString
- Data.Attoparsec.ByteString.Z85
- Text
- Data.Attoparsec.Text.Z85
- ByteString
- ByteString
- Data.ByteString.Z85
- Data.ByteString.Z85.Internal
- Data.ByteString.Z85
- Attoparsec
- Pipes
- Pipes.Z85
Downloads
- z85-0.0.2.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
- No Candidates
| Versions [RSS] | 0.0.0, 0.0.1, 0.0.2 |
|---|---|
| Change log | ChangeLog.md |
| Dependencies | attoparsec, attoparsec-binary (>=0.2), base (>=4.8 && <4.12), bytestring, pipes (>=4.0 && <4.4), pipes-bytestring (>=2.1.6), pipes-text (>=0.0.2.5), QuickCheck, text, vector-sized [details] |
| License | BSD-3-Clause |
| Copyright | Copyright (c) 2018 Athan Clark |
| Author | Athan Clark |
| Maintainer | athan.clark@localcooking.com |
| Uploaded | by athanclark at 2018-12-30T18:03:20Z |
| Category | Data |
| Home page | https://github.com/athanclark/z85#readme |
| Bug tracker | https://github.com/athanclark/z85/issues |
| Source repo | head: git clone https://github.com/athanclark/z85 |
| Distributions | |
| Downloads | 1536 total (8 in the last 30 days) |
| Rating | (no votes yet) [estimated by Bayesian average] |
| Your Rating |
|
| Status | Docs not available [build log] All reported builds failed as of 2018-12-30 [all 3 reports] |
Readme for z85-0.0.2
[back to package description]z85
z85 is a binary string codec, like hexadecimal or base64, but has a higher density of compression than the former, due to its use of a higher base value of 85 than base 64. ByteStrings just need to be a length of a multiple of 4 (a Word32String might be a better name).
There are multiple layers of exposed implementation in this package
Word32 <-> Vector 4 Z85Charfor low level work- Attoparsec
Parser ByteString <-> Parser Textfor slightly higher level parsing of strict data - Pipes
Pipe ByteString Text <-> Pipe Text ByteStringfor encoding / decoding streams of strict data - Casual
Lazy.ByteString ~ Lazy.Textfunctions for encoding / decoding lazy data.