|
|
|
|
|
by Retr0id
178 days ago
|
|
There are also deflate-specific tricks you can use - just spam empty non-final blocks ad infinitum. import zlib
zlib.decompress(b"\x00\x00\x00\xff\xff" * 1000 + b"\x03\x00", wbits=-15)
If you want to spin more CPU, you'd probably want to define random huffman trees and then never use them. |
|
The minimal version boils down to: