LZ4
From Just Solve the File Format Problem
(Difference between revisions)
(Created page with "{{FormatInfo |formattype=electronic |subcat=Compression }} '''LZ4''' is a lossless data compression algorithm and compressed data format. It is designed to support very fast c...") |
(→Resources) |
||
| (3 intermediate revisions by one user not shown) | |||
| Line 2: | Line 2: | ||
|formattype=electronic | |formattype=electronic | ||
|subcat=Compression | |subcat=Compression | ||
| + | |extensions={{ext|lz4}} | ||
| + | |released=2011 | ||
}} | }} | ||
'''LZ4''' is a lossless data compression algorithm and compressed data format. It is designed to support very fast compression. | '''LZ4''' is a lossless data compression algorithm and compressed data format. It is designed to support very fast compression. | ||
| + | |||
| + | == Identification == | ||
| + | When used as a file format, LZ4 files begin with signature bytes <code>04 22 4d 18</code>. | ||
| + | |||
| + | There is also a legacy format, whose signature is <code>02 21 4c 18</code>. | ||
== Resources == | == Resources == | ||
| − | * https:// | + | * [https://github.com/Cyan4973/lz4 LZ4 website] |
* [http://fastcompression.blogspot.com/2011/05/lz4-explained.html LZ4 explained] | * [http://fastcompression.blogspot.com/2011/05/lz4-explained.html LZ4 explained] | ||
| + | * [https://ticki.github.io/blog/how-lz4-works/ How LZ4 works] | ||
| + | * [http://blog.securitymouse.com/2014/06/raising-lazarus-20-year-old-bug-that.html Raising Lazarus - The 20 Year Old Bug that Went to Mars] vs. [http://fastcompression.blogspot.com/2014/06/debunking-lz4-20-years-old-bug-myth.html Debunking the LZ4 "20 years old bug" myth] | ||
Revision as of 18:17, 30 June 2017
LZ4 is a lossless data compression algorithm and compressed data format. It is designed to support very fast compression.
Identification
When used as a file format, LZ4 files begin with signature bytes 04 22 4d 18.
There is also a legacy format, whose signature is 02 21 4c 18.