https://github.com/nofeaturesonlybugs/z85
golang z85 encoding and decoding.
https://github.com/nofeaturesonlybugs/z85
go golang z85
Last synced: 4 months 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 (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-06-12T18:30:24.000Z (almost 3 years ago)
- Last Synced: 2024-11-12T10:08:17.115Z (6 months ago)
- Topics: go, golang, z85
- Language: Go
- Homepage:
- Size: 7.81 KB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.txt
- License: LICENSE
Awesome Lists containing this project
README
[](https://pkg.go.dev/github.com/nofeaturesonlybugs/z85)
[](https://goreportcard.com/report/github.com/nofeaturesonlybugs/z85)
[](https://app.travis-ci.com/nofeaturesonlybugs/z85)
[](https://codecov.io/gh/nofeaturesonlybugs/z85)
[](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.