Snappy.Sharp
Snappy.Sharp copied to clipboard
An implementation of google's Snappy compression format in C#
During my comparison of compression algorithms I've tested your nuget package (Snappy.Sharp 1.0.0), but something is wrong: compressing a 10MB binary file results in about 18MB output, which is quite...
The following Code results in an Exception during decompression in Utilities.UnalignedCopy64: > byte[] uncompressed = new byte[100]; > byte[] compressed = new byte[100]; > > Snappy.Sharp.SnappyCompressor snappyCompressor = new Snappy.Sharp.SnappyCompressor();...
port this project to netstandard11 in order to run on multi platform
The native implementation does sometimes not restore the original data when compressing and then decompressing. > ``` > byte[] uncompressed = new byte[] { 5,0,5,0,6,0,6,0,5,0, > 5,0,5,0,5,0,5,0,6,0, > 6,0,5,0,5,0,5,0,5,0, >...