Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nofeaturesonlybugs/z85
golang z85 encoding and decoding.
https://github.com/nofeaturesonlybugs/z85
go golang z85
Last synced: 8 days ago
JSON representation
golang z85 encoding and decoding.
- Host: GitHub
- URL: https://github.com/nofeaturesonlybugs/z85
- Owner: nofeaturesonlybugs
- License: mit
- Created: 2020-09-02T22:38:03.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-06-12T18:30:24.000Z (over 2 years ago)
- Last Synced: 2023-07-27T22:24:50.253Z (over 1 year ago)
- Topics: go, golang, z85
- Language: Go
- Homepage:
- Size: 7.81 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.txt
- License: LICENSE
Awesome Lists containing this project
README
[![Go Reference](https://pkg.go.dev/badge/github.com/nofeaturesonlybugs/z85.svg)](https://pkg.go.dev/github.com/nofeaturesonlybugs/z85)
[![Go Report Card](https://goreportcard.com/badge/github.com/nofeaturesonlybugs/z85)](https://goreportcard.com/report/github.com/nofeaturesonlybugs/z85)
[![Build Status](https://app.travis-ci.com/nofeaturesonlybugs/z85.svg?branch=master)](https://app.travis-ci.com/nofeaturesonlybugs/z85)
[![codecov](https://codecov.io/gh/nofeaturesonlybugs/z85/branch/master/graph/badge.svg)](https://codecov.io/gh/nofeaturesonlybugs/z85)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)A golang implementation of ZeroMQ Z85 encoding as specified at https://rfc.zeromq.org/spec:32/Z85/
Credit
This implementation is influenced in part by https://github.com/tilinna/z85
Enhancements
This implementation does not require the caller to allocate storage buffers before calls to Encode or Decode.
This implementation provides functions to pad inputs to a length that is a multiple of 4; a complementary trim function is also provided.