Zstandard
From Just Solve the File Format Problem
(Difference between revisions)
(Added the new magic number) |
m (Fixed typo) |
||
Line 8: | Line 8: | ||
== Identification == | == Identification == | ||
− | For at least some versions of Zstd format, files begin with signature bytes {{magic|25 b5 2f fd}}. For files created since version 0.8.0 (August 2016<ref>https://github.com/facebook/zstd/releases/tag/v0.8.0</ref>), the header is instead {{magic|28 b5 2f fd}}<ref>https://github.com/facebook/zstd/blob/dev/lib/zstd.h, | + | For at least some versions of Zstd format, files begin with signature bytes {{magic|25 b5 2f fd}}. For files created since version 0.8.0 (August 2016<ref>https://github.com/facebook/zstd/releases/tag/v0.8.0</ref>), the header is instead {{magic|28 b5 2f fd}}<ref>https://github.com/facebook/zstd/blob/dev/lib/zstd.h, definition of ZSTD_MAGICNUMBER</ref>. |
== Software == | == Software == |
Revision as of 06:05, 12 May 2019
Zstandard, or Zstd, is a general-purpose compression algorithm and file format. It is designed to have a good balance between compression ratio, compression speed, and decompression speed.
Contents |
Identification
For at least some versions of Zstd format, files begin with signature bytes 25 b5 2f fd
. For files created since version 0.8.0 (August 2016[1]), the header is instead 28 b5 2f fd
[2].
Software
- Zstandard →
zstd
,unzstd
,zstdcat
Links
References
- ↑ https://github.com/facebook/zstd/releases/tag/v0.8.0
- ↑ https://github.com/facebook/zstd/blob/dev/lib/zstd.h, definition of ZSTD_MAGICNUMBER