https://github.com/anchore/go-lzo
A LZO1X decompression library written in go that is permissively licensed
https://github.com/anchore/go-lzo
decompression go lzo
Last synced: 4 months ago
JSON representation
A LZO1X decompression library written in go that is permissively licensed
- Host: GitHub
- URL: https://github.com/anchore/go-lzo
- Owner: anchore
- License: mit
- Created: 2025-05-28T13:28:59.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2026-04-01T18:26:11.000Z (4 months ago)
- Last Synced: 2026-04-02T05:47:09.030Z (4 months ago)
- Topics: decompression, go, lzo
- Language: Go
- Homepage:
- Size: 66.4 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# go-lzo
This repository provides an implementation of the LZO1X decompression algorithm in Go.
The implementation is derived from the [Linux kernel documentation for the LZO stream format](https://docs.kernel.org/staging/lzo.html) and the [implementation from `lzokay` project](https://github.com/AxioDL/lzokay) (MIT licensed). It includes a `Reader` for streaming decompressed data and a standalone `Decompress` function for use with byte slices.
To use this library:
```bash
go get github.com/anchore/go-lzo
```