C# managed implementation of zstd (Zstandard) compression algorithm. Currently only the decompression part.
Basically the RFC is too hard to understand, so I just ported existing Zstd implementation from Java based aircompressor to C#. Yes, the porting experience was horrible, because Java does not have unsigned integer types.
Because I needed the decompression for another project.
Coming up later
Dotnet core 2.0 environment
Move to src folder and run
dotnet build
TBA
- nunit
- NUnit3TestAdapter
- Microsoft.NET.Test.Sdk
All requirements are restored when you run
dotnet restore
Just call
dotnet test
- Basic decompress method
- Compress functionality
All code is released under Apache License, see License. It is same license as aircompressor has.