Lzip.Lib
1.0.21
See the version list below for details.
dotnet add package Lzip.Lib --version 1.0.21
NuGet\Install-Package Lzip.Lib -Version 1.0.21
<PackageReference Include="Lzip.Lib" Version="1.0.21" />
<PackageVersion Include="Lzip.Lib" Version="1.0.21" />
<PackageReference Include="Lzip.Lib" />
paket add Lzip.Lib --version 1.0.21
#r "nuget: Lzip.Lib, 1.0.21"
#:package Lzip.Lib@1.0.21
#addin nuget:?package=Lzip.Lib&version=1.0.21
#tool nuget:?package=Lzip.Lib&version=1.0.21
Lzip.Lib
Pure-managed lzip (LZMA1) codec for .NET -- a fast, AOT/trim-friendly decompressor for the
lzip container format, including multi-member files that are decoded
in parallel. No external lzip binary required.
1.0 ships the decoder. An encoder (LZMA1 + lzip member framing + -b-style chunking) is
planned for a later release.
Install
dotnet add package Lzip.Lib
Usage
using SharpAstro.Lzip;
// From a byte array:
byte[] data = LzipDecoder.Decompress(File.ReadAllBytes("catalog.lz"));
// From a stream:
using var stream = File.OpenRead("catalog.lz");
byte[] fromStream = LzipDecoder.Decompress(stream);
// Lazily as a stream:
using var decompressed = LzipDecoder.DecompressToStream(File.OpenRead("catalog.lz"));
Multi-member lzip files (e.g. produced by lzip -b) are detected and decoded across cores
automatically.
Format notes
Each lzip member is a 6-byte header ("LZIP" magic + version + coded dictionary size) followed by an
LZMA1 stream (fixed properties lc=3, lp=0, pb=2) and a 20-byte trailer (CRC32 of the uncompressed
data + uncompressed size + member size). A multi-member file is simply independent members
concatenated.
License
MIT -- see LICENSE.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Lzip.Lib:
| Package | Downloads |
|---|---|
|
TianWen.Lib
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.